I have a code like this on my page
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("td.offset").each(function(){
DOSOMETHING
});
});
</script>
I have about 50 entries in my table, but page only loads 10 at a time.To see next 10 one presses Next and that is where the problem is.
The above script is not applied to td's on that page. Please share the wisdom on how to fix this Thank you in advance.
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("td.offset").each(function(){
DOSOMETHING
});
});
</script>
I have about 50 entries in my table, but page only loads 10 at a time.To see next 10 one presses Next and that is where the problem is.
The above script is not applied to td's on that page. Please share the wisdom on how to fix this Thank you in advance.