I've read plenty of good blog posts on integrating jquery with ASP.NET web forms to utilize the data access capabilities, but I'm curious to know how easy it would be to use some of jquery's animation capabilities before a postback. I can think of two good examples:
1) When I click on a asp:button, animate a div, but then do a regular postback when the animation is finished (or complete the animation after the postback?).
2) When I click on a linkbutton in a gridview, fade out the gridview row, then do the regular postback in the linkbutton's onclick event.
I'm not aware of a solution to this. Everything I've tried has either run the postback before the animation even starts, or runs the animation but then you need to execute the postback in javascript (yuck).