Rebinding events in jquery after ajax update (updatepanel) - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T09:12:20Zhttp://stackoverflow.com/feeds/question/301473http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel14Rebinding events in jquery after ajax update (updatepanel)Hojou2008-11-19T10:26:44Z2009-09-25T21:06:18Z
<p>I have several input and option elements on my page, each (well almost) have an event attached to update some text on the page once they change. I use JQuery which is really really cool :) I also use microsofts ajax framework, utilizing the UpdatePanel. The reason why i do that is that certain elements are created on the page based on some server-side logic. I don't really want to explain why i use the UpdatePanel - even if it could (it can with quite some effort) be rewritten to use only jquery i still want that UpdatePanel.</p>
<p>You probably guessed it - once i have a postback on the UpdatePanel the jquery events stops working. I actually was expecting this, since the "postback" is not really a new postback so my code in document.ready that binds the events won't be fired again. I also confirmed my suspicion by reading up on it in the jquery help libraries.</p>
<p>Anyways I'm left with the problem of rebinding my controls after the UpdatePanel is done updating the DOM. I preferably need a solution that does not require adding more .js files (jquery plugins) to the page but something as simple as being able to catch the UpdatePanel's 'afterupdating' where i can just call my method to rebind all the form elements.</p>
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel/301489#30148916Answer by Phil Jenkins for Rebinding events in jquery after ajax update (updatepanel)Phil Jenkins2008-11-19T10:33:19Z2008-11-19T10:33:19Z<p>Since you're using ASP.NET AJAX, you'll have access to a <code>pageLoad</code> event handler, that gets called each time the page posts back, be it full or partial from an UpdatePanel. You just need to put the function in to your page, no hooking up required.</p>
<pre><code>function pageLoad(sender, args)
{
if(args.get_isPartialLoad())
{
//Specific code for partial postbacks can go in here
}
}
</code></pre>
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel/301556#3015561Answer by redsquare for Rebinding events in jquery after ajax update (updatepanel)redsquare2008-11-19T10:54:48Z2008-11-19T10:54:48Z<p>You could use jQuery and event delegation. basically hook events to containers rather than every element and query the event.target and run script based on that.</p>
<p>It has multiple beenfits in that you reduce the code noise (no need to rebind) it also is easier on browser memory (less events bound in the dom)</p>
<p>Quick example <a href="http://pastebin.me/4922b20867e9d" rel="nofollow">here</a></p>
<p><a href="http://www.danwebb.net/2008/2/8/event-delegation-made-easy-in-jquery" rel="nofollow">jQuery plugin</a> for easy event delegation</p>
<p>P.S I am 99% sure delegation will be in the jQuery core at the next release</p>
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel/304642#3046424Answer by Paulius for Rebinding events in jquery after ajax update (updatepanel)Paulius2008-11-20T08:32:40Z2008-11-20T08:32:40Z<pre><code>Sys.Application.add_load(initSomething);
function initSomething()
{
// will execute on load plus on every UpdatePanel postback
}
</code></pre>
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel/547303#5473034Answer by George for Rebinding events in jquery after ajax update (updatepanel)George2009-02-13T19:19:38Z2009-02-13T19:19:38Z<p>Or you could check the latest jquery's live functionality ....</p>
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel/1199185#11991851Answer by shatl for Rebinding events in jquery after ajax update (updatepanel)shatl2009-07-29T10:05:56Z2009-07-29T10:05:56Z<p>Use following code</p>
<pre><code>Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(pageLoaded);
function pageLoaded(sender, args) {
var updatedPanels = args.get_panelsUpdated();
// check if Main Panel was updated
for (idx = 0; idx < updatedPanels.length; idx++) {
if (updatedPanels[idx].id == "<%=upMain.ID %>") {
rebindEventsForMainPanel();
break;
}
}
}
</code></pre>
http://stackoverflow.com/questions/301473/rebinding-events-in-jquery-after-ajax-update-updatepanel/1479588#14795881Answer by Patrick Dow for Rebinding events in jquery after ajax update (updatepanel)Patrick Dow2009-09-25T21:06:18Z2009-09-25T21:06:18Z<p>Are there any methods available to find the id of the object that triggered the event?</p>