For whatever reason the following:
$(function() { $(window).resize(function() { alert(\"resized!\"); }); });
only fires an event wh
try
$(document).resize(function(){ ... };);
I think its the document that fires the resize consistently across browsers. But I'm not at work now to check what I usually do.