I want something to happen when I resize my browser window, but every thing on the page must be loaded first. This doesn't work, but you get the picture:
$(window).resize(function(){
$(window).load(function(){
// do stuff
});
});
How can I make this work?