Skip to content

Instantly share code, notes, and snippets.

@yratof
Created August 8, 2014 14:46
Show Gist options
  • Save yratof/20102a6a7f78d0686161 to your computer and use it in GitHub Desktop.
Save yratof/20102a6a7f78d0686161 to your computer and use it in GitHub Desktop.
jQuery load on window load. But actually work.
<script type="text/javascript">
// jQuery Closure mode
(function($){
$(window).load(function(){
var resize = function() {
$('.masthead > div').equalise();
};
$(window).resize(resize);
resize();
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment