michael2
9/11/2017 - 12:32 AM

Media Query for JQuery > if function runs on mobile ( < 700) | replace 'alert('Less than 700');' with function you want to run

Media Query for JQuery > if function runs on mobile ( < 700) | replace 'alert('Less than 700');' with function you want to run

<script type="text/javascript"> 

$(document).ready(function() {
  if ($(window).width() < 700) {
        alert('Less than 700');
    }
  $(window).resize(function() {
    if ($(window).width() < 700) {
        alert('Less than 700');
    }
  });
});
  
</script>