I\'m using jQuery to wire up some mouseover effects on elements that are inside an UpdatePanel. The events are bound in $(document).ready . For example:
$(document).ready
Upgrade to jQuery 1.3 and use:
$(function() { $('div._Foo').live("mouseover", function(e) { // Do something exciting }); });
Note: live works with most events, but not all. There is a complete list in the documentation.