Created
          March 1, 2017 06:04 
        
      - 
      
 - 
        
Save mlbd/1ec032f349abc48f96fbb62971420b22 to your computer and use it in GitHub Desktop.  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // jQuery | |
| $(window).trigger('resize'); | |
| // Javascript | |
| window.dispatchEvent(new Event('resize')); | |
| // Javascript support IE as well | |
| var evt = window.document.createEvent('UIEvents'); | |
| evt.initUIEvent('resize', true, false, window, 0); | |
| window.dispatchEvent(evt); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment