I have a page that contains a user control within an update panel. $(document).ready(function() ) {
is called and executes the code correctly when the page firsts loads but if the user clicks a button (within the user control), the document.ready()
doesn't get called (document.load
, onload
also don't work)
I have researched this on the net and found similar problems but nothing that can explain why this isn't working. What other causes can there be for document.ready
not working?