Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     // Optimal size for bodyWrapper2
  3.     bwResize();
  4.     $(window).resize(bwResize);
  5. });
  6.  
  7. function bwResize() {
  8.     var w = $('body').width();
  9.     var h = $('body').height();
  10.     $('#bodyWrapper2').css({
  11.         'top' : '50px',
  12.         'left' : '50px',
  13.         'width' : (w - 100)+'px',
  14.         'height' : (h - 100)+'px',
  15.         'margin' : '0'
  16.     });
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement