Toggle to change class - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:toggleClass

Description

Toggle to change class

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://code.jquery.com/jquery-1.8.3.js"></script> 
   </head> 
   <body> 
      <div class="test">
         test/*from   w ww .  java  2s.  co m*/
      </div> 
      <script type="text/javascript">
jQuery(window).on('resize load', changeClass);
function changeClass() {
    $('.test').toggle(window.matchMedia('(max-width:805px)').matches);
}

      </script>  
   </body>
</html>

Related Tutorials