[jQuery] jQuery $(document).ready() function evaluation order
Given:
$(document).ready(function(){
alert('1');
});
$(document).ready(function(){
alert('2');
});
$(document).ready(function(){
alert('3');
});
Does jQuery define the eventual evaluation order so that the alert boxes
come up in 1, 2, 3 sequence? In other words, can i rely on the .ready()
queue to be a first-in-first-out queue?
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/