I thought this might be a fast way to remove the contents of a very large table (3000 rows):
$jq(\"tbody\", myTable).remove();
But it\'s taking
if you want to remove only fast.. you can do like below..
$( "#tableId tbody tr" ).each( function(){ this.parentNode.removeChild( this ); });
but, there can be some event-binded elements in table,
in that case,
above code is not prevent memory leak in IE... T-T and not fast in FF...
sorry....