Multiple Instances of ASP.NET UserControl with query Autocomplete on same page
I'm quite new to jquery and javascript programming in general so please be patient. I have an ASP.NET web user control (region.ascx) that contains an instance of the jquery autocomplete plugin. The jquery code (i have cutoff the code for brevity) is this: $(function () { initializerRegion(); }); var prmInstance = Sys.WebForms.PageRequestManager.getInstance(); prmInstance.add_endRequest(function () { //you need to re-bind your jquery events here initializerRegion(); }); function initializerRegion() { $($get('<%= autoRegion.ClientID %>')).autocomplete({ source: function (request, response) {....