Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created December 5, 2013 20:06
Show Gist options
  • Select an option

  • Save shazdeh/7812930 to your computer and use it in GitHub Desktop.

Select an option

Save shazdeh/7812930 to your computer and use it in GitHub Desktop.
Trigger window resize event on page load
<?php
function custom_footer_scripts() { ?>
<script>
jQuery(window).load(function(){ jQuery(window).resize(); });
</script>
<?php }
add_action( 'wp_footer', 'custom_footer_scripts', 99999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment