Advertisement
iolab

Untitled

Sep 16th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $(function() {
  2.  
  3. $(window).resize(function() {
  4. var viewportWidth = $(window).width();
  5. var viewportHeight = $(window).height();
  6. if (viewportWidth < 1024 & viewportHeight < 768) {
  7. //do something here
  8. }
  9. else if (viewportWidth < 600 & viewportHeight < 400) {
  10. //do something here
  11. }
  12. });
  13.  
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement