Archive for the ‘HTML’ Category

<script type=”text/javascript”> function addRowTable() { $(“#myTable > tbody”).append(“<tr><td>row content</td></tr>”); } function removeRowTable(rowId) { if(confirm(“Are you sure to delete this item?”)){ $(“#”+rowId).remove(); } } </script> <table id=”myTable”> <thead><th>head1</th></thead> <tbody></tbody> </table> <input type=”button” name=”addtolist” value=”Add To List” onclick=”addRowTable()”>

Nice and Interactive Chart With Yii Extensions http://www.highcharts.com/demo/   For Yii extensions: http://www.yiiframework.com/extension/highcharts/

Div center using css

Posted: September 23, 2010 in HTML

Here how to center your div using css: #center_div { width:750px; left:50%; margin-left:-375px; } <div id=’center_div‘>xxx</div>

Div overlay flash

Posted: September 23, 2010 in HTML