Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to the group and just had a simple question about the jQuery(window).load(function() {});.

I have an external JS file that gets inserted dynamically on the page "after" the window load event occurs. Inside this JS file I have a statement as follows:

jQuery(window).load(function() {
    alert("Something");
});

The question I have is, would the alert() statement above get executed because by the time my above function gets registered to the window load event, the event has already fired. I would expect the alert above to fire immediately since the event it is supposed to wait on, is already complete.

I appreciate any ideas.

Thanks!

share|improve this question
Probably should use jQuery(document).load( ... ) instead. – Pointy Mar 25 '10 at 21:22
Also: what does happen currently? – Pointy Mar 25 '10 at 21:23
Currently it does not fire. I think it would have made more sense to fire the function immediately. Since, the coder, intended his function to be executed after the window onload event has occurred and jQuery should be intelligent enough to understand that since the event has occurred, we should call the function right away. – stony_dreams Mar 25 '10 at 21:31
jQuery offers a mechanism for this: $(document).ready(function() { }), why does this code not use that, does it need images to be loaded? – Nick Craver Mar 25 '10 at 21:33
This code embeds some flash on the page and taking some latency issues in consideration, I don't want the load event to be blocked on the flash to complete loading. Thus I want to embed this flash after the window load event occurs. Also, the entire embed logic is inside an external JS file which is also fetched after the load event, which is why I had this question. Thanks for your response. :) – stony_dreams Mar 25 '10 at 21:36

1 Answer

up vote 2 down vote accepted

No, it would not fire, however, you can invoke the event after inserting like this:

$(window).load(); //or.. $(window).trigger('load');

This will trigger that code to run.

Using document.ready will fire immediately when included after the document is already ready, but $(window).load(function() {... }) is explicitly binding to the window's load event, which has already fired.

share|improve this answer
Thanks! I expected the behavior to be a little more intelligent but I get your point here. I will try to register my function to the load event before it actually fires. (More in the comment above). – stony_dreams Mar 25 '10 at 21:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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