html5: basic structure

by prettyscripts on 2011-09-01 11:56:00 • Leave a comment »

htmlhtml5

html5 introduces new elements to clearly defines structure of a page. html5 is not fully ready as the specification is still work-in-progress and not fully supported by most browsers. however many developers have already developed websites with html5 /… more »

Tags: html5, web

css: box around floating elements

by prettyscripts on 2010-09-20 16:25:00 • Leave a comment »

csshtml

a common problem with when trying to box 2 floating elements, you see a zero-height box align to the top of the floating element. eg, we have the following layout:<div class="container"> <div class="left">left column</div>… more »

Tags: box, css, float

wz_tooltip: usage notes

by prettyscripts on 2010-05-14 16:45:00 • 9 comments »

freejavascripthtml

i have previously posted about this javascript based bubble help tooltips 1.5 years ago. i decided to use this in a new project but sadly the website is gone. nowhere to download! no documentation! after doing some research it was said the walter zorn,… more »

Tags: free, tooltip

xajax: append form fields and firefox

by prettyscripts on 2009-09-15 14:43:56 • 1 comment »

phphtmlxajax

a case that works in IE but not firefox. supposed there’s form with a few fields. a button to manually adding more fields to the form. these fields are grouped under the same <div> tag. when the fields are added to the form, the original field va… more »

Tags: append, field, form, php, xajax

xajax and IE: append table row

by prettyscripts on 2009-06-30 23:08:44 • Leave a comment »

phphtmlxajax

append a table row should sound straight forward when using with a xajax function. the html code for table and a button within a form: <table> <th><td>header1</td><td>header2</td></th> <tbody id="tb… more »