What could be reasons not to execute document.ready within returned partial page?
It works fine 2 times, but on 3rd time nothing happens after update of html:
alert(html);
alert($(PopUpItem));
$(PopUpItem).html(html);
alert('in set popup html completed');
I have all alerts executed, PopupItem and html has correct values.
I am using JQuery to execute server call by $.post.
Also, Can I have error handler to catch if some syntax error happened?
Within your returned AJAX, you shouldn’t need a $(document).ready() call. The DOM has already been loaded. Something simple like this should do the trick: