Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.79 KB | None | 0 0
  1. $(document).ready(function() {   // This will fire when document is ready
  2. $(window).resize(function() {   // This will fire each time the window is resized:
  3.     if($(window).width() <= 1200) {  
  4.  
  5.         $("footer").addClass("d-none");             //Fjerner footer og fyll ut hele siden
  6.         $(".parent").css("margin-bottom", "0px");
  7.  
  8.     } else if ($(window).height() <= 500) {
  9.            
  10.         $("footer").addClass("d-none");           //Fjerner footer og fyll ut hele siden
  11.         $(".parent").css("margin-bottom", "0px");
  12.     } else {    
  13.  
  14.         $("footer").removeClass("d-none");          //Legger til footer og forskyver siden
  15.         $(".parent").css("margin-bottom", "110px");
  16.  
  17.     }
  18.     })
  19.     .resize(); // This will simulate a resize to trigger the initial run.
  20. }
  21. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement