As the name implies, I am having problems saving my code during postback. I have a bunch of jQuery code in the "Head" section, and this works fine until the postback happens, after which it stops functioning!
How can i fix this? The head cannot be read after the postback, and is there a way I can make this happen?
JavaScript:
<script type="text/javascript">
$(document).ready(function()
{
$('.tablesorter tbody tr').tablesorter();
$('.tablesearch tbody tr').quicksearch({
position: 'before',
attached: 'table.tablesearch',
stripeRowClass: ['odd', 'even'],
labelText: 'Search:',
delay: 100
});
});
</script>
source
share