Javascript examples for jQuery Method and Property:toggleClass
Toggle to change class
<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>