Guest User

Untitled

a guest
Jun 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $(window).width();
  2. $(document).width();
  3. $(window).height();
  4. $(document).height();
  5.  
  6. $(function(){
  7. $(window).resize(function(){
  8. var h = $(window).height();
  9. var w = $(window).width();
  10. $("#elementToResize").css('height',(h < 1024 || w < 768) ? 500 : 400);
  11. });
  12. });
  13.  
  14. jQuery.event.add(window, "load", resizeFrame);
  15. jQuery.event.add(window, "resize", resizeFrame);
  16.  
  17. function resizeFrame()
  18. {
  19. var h = $(window).height();
  20. var w = $(window).width();
  21. $("#elementToResize").css('height',(h < 1024 || w < 768) ? 500 : 400);
  22. }
Add Comment
Please, Sign In to add comment