Advertisement
Guest User

Untitled

a guest
May 29th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link rel="stylesheet" media="all" href="regular_styles.css">
  7. <link rel="stylesheet" media="(max-width: 600px)" href="small_screen.css" id="small">
  8. </head>
  9. <body>
  10.  
  11. <div class="a">Hello</div>
  12. <input id="b" type="button" value="Change" />
  13.  
  14. <script src="jquery.min.js"></script>
  15. <script>
  16. $('#b').click(function(){
  17. // change the media query perimeter to "all"
  18. $('#small').attr('media', 'all');
  19. });
  20. </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement