How can I rebind my events (jquery) when I perform a partial page postback?
I am wiring everything up using:
$(document).ready(function(){}; <
$(document).ready(function(){};
Check out the "live" feature of jQuery 1.3 here. You can add events to future elements as well as current elements on the page. This may simplify the code you'll need to write.