Guest User

Untitled

a guest
Nov 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var isMobile = false;
  2. $(document).ready( function() {
  3. if ($('body').width() <= 400) {
  4. isMobile = true;
  5. }
  6. //Для мобилок
  7. if (isMobile) {
  8. ...
  9. }
  10. //Для ПК
  11. if (!isMobile) {
  12. ...
  13. }
  14. } );
Add Comment
Please, Sign In to add comment