Tagged Questions
1
vote
5answers
76 views
i feel confused with jquery's load
with jquery,how can i do something just after the dom loaded,i write like this:
<script>
$("#google").load(function() {
alert('ok');
});
</script>
<img ...
1
vote
2answers
4k views
MooTools: domready vs load
With which will function(){} fire first?
A) window.addEvent('domready', function(){});
B) window.addEvent('load', function(){});
0
votes
1answer
109 views
Executing JS before whole DOM is ready
Ok, I made 2 posts about this but somehow I can't get it into my little mind.
So I concluded that if we have something like this:
<script type="text/javascript" ...
0
votes
3answers
77 views
Jquery ready dom
i got a kind of issue of JQuery ( i started few times ago), i have a very BIG html page, and i have a widget at the start of this page, but i did a document.ready so it's waiting that all my page is ...
0
votes
2answers
1k views
jQuery: recieve document ready() on child window
Hey, I'm trying to get notified when the child window I'm opening has its document loaded and ready. This doesn't seem to work:
win = window.open(href, 'test', 'width=300, height=400');
win.focus();
...