What are some of the more practiced methods of speeding up jquery animations across all browsers? I'm currently using jquery with a GridView(Table) and it's lagging and lagging making the slideUp() slideDown() unusable.
Links other then jquery.com are greatly appreciated.
$(document).ready(function(){
$("#GridTable td").click(function() {
$(this).parent.slideToggle("normal");
});
});
Not complicated code. Just very sloooow. Mind you I have a gridview with millions of records. It would be nice to find out some alternatives.