Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var oldWidth;
  2. setInterval(func, 1500);
  3. function func(){
  4. var windowWidth = window.innerWidth;
  5. if(oldWidth == windowWidth){
  6. return;
  7. }
  8. else{ // na chui to? tylko pierdoli czytelnosc.
  9. if(windowWidth > 1000){
  10. //do something
  11. }
  12. else{
  13. //do something
  14. }
  15. }
  16. oldWidth = windowWidth;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement