Advertisement
Guest User

Untitled

a guest
May 5th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.64 KB | None | 0 0
  1. /* Designed by: */
  2. /* Galym Kerimbekov kegalym2 DOT mail.ru */
  3. /* especially for Made Simple CMS */
  4. /* ======================================= */
  5.  
  6. /* PORTRAIT MEDIA QUERY EVENT */
  7.  
  8. $(document).ready(function() {
  9.     $("button").click(function() {
  10.         if ($("button").attr("aria-expanded", "true")) {
  11.             var id = document.getElementById('main');
  12.             var top = 300;
  13.             id.setAttribute("style", "margin-top:" + top.toString() + "px" );
  14.            
  15.         } else {
  16.             $("button").attr("aria-expanded", "false");
  17.             var id = document.getElementById('main');
  18.             var top = 0;
  19.             id.setAttribute("style", "margin-top:" + top.toString() + "px" );
  20.         }
  21.     });
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement