Handle window resize event and check window width - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:resize

Description

Handle window resize event and check window width

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){//from   ww  w . j  a v a  2s. c om
var slide = $("#slide");
$(window).resize(function(){
   if($(this).width() < 900){
   console.log(slide.html());
  }
})
    });

      </script> 
 </head> 
 <body> 
  <div id="slide">
    BOO 
  </div>  
 </body>
</html>

Related Tutorials