this question has answer here:
i have script. example:
var rowcount = $('tr').length; document.write(rowcount);
i want load after entire webpage has loaded. how can do?
use following script:
<script type="text/javascript"> $(document).ready(function () { var rowcount = $('tr').length; document.write(rowcount); }); </script>
Comments
Post a Comment