I have web page in which one part is changed dynamically (clock on menu item). I use JQuery in both pages - main - and dynamic and use function on document ready. I cannot use use only in main webpage -because some elements appear only after load internal page. So question is: Will be function onDocumentReady executed only in internal page or in both? Thanks.

link|improve this question

How is the "internal page" loaded? Are you pulling it in on the server? AJAX? Iframe? – mu is too short Jun 18 '11 at 19:10
I'm sort of hazy as to what you're asking, but a given document's onDocumentReady function will call once that document hits the event that is attached to the document ready stage. IF the master page hangs until its child page is loaded then yes, the master page's document ready event will fire once they've both loaded. If it does not hang, then relying on the master's document ready will not be sufficient. What is it that you are trying to accomplish? – MoarCodePlz Jun 18 '11 at 19:11
Yes, using AJAX. <div id="mydiv"></div> – Lorenzo Manucci Jun 18 '11 at 19:13
feedback

1 Answer

up vote 2 down vote accepted

If you're using an AJAX call to load your new content, then you'll have to use delegate to set up your event bindings or set things up manually in the AJAX success callback; if you need to do something that is more complicated than binding a simple click handler (such as binding a jQuery-UI button or a form validator), then you'll have to do it by hand. For example, if you're using the load convenience function to pull in new content:

$('#mydiv').load('/where/it/comes/from', function(responseText, textStatus, XMLHttpRequest) {
    // Bind events and widgets to the new things inside #mydiv
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.