How do I get this function to not only run on window resize but also on initial page load?
$(window).resize(function() { ... });
$(document).ready(onResize); $(window).bind('resize', onResize);
didn't work with me.
Try
$(window).load('resize', onResize); $(window).bind('resize', onResize);
instead.
(I know this question is old, but google sent me here, so...)