Why do my input elements not retain focus/blur events after postback?

I am using jQuery to set the focus/blur events of some input textbox controls via

$  (function() {
  ..
});

But whenever a postback occurs, my controls no longer perform these events. I tried removing them from the document ready event and placing the code at the bottom of document, hoping it would load it each time, but that didn’t work. How can I get these controls to retain there focus/blur events after postbacks?

Didn’t think it mattered, but these postbacks are taking place in an ajax:UpdatePanel

newest questions tagged jquery – Stack Overflow

About Admin