I have a table in html,
<div id="top-body" class="p-body" style="height:800px; overflow:auto; display:block !important;">
<table id="o-Table" class="myTable"></table>
</div>
Now I want to add this rows to it, but in page_load method, please guide,
$("#o-Table").append(
"<tr class='myRow'>" +
" <div class='myRow'>" +
" <td class='myCell' onclick='DoSomething(\"" + someString + "\")'>" +
" <div class='myCell2'>" + someString2 + "</div>" +
" </td>" +
" </div>" +
"</tr>");