Forum Moderators: open
how to use the Q.isMobile variable to stop the script.
<script type="text/javascript">
Q.isMobile=false;
J=navigator.userAgent.toLowerCase();
if(J.indexOf("iphone")>-1||J.indexOf("ipad")>-1||J.indexOf("ipod")>-1||J.indexOf("android")>-1){
Q.isMobile=true;
}
if ((Q.isMobile==false)) { Shadowbox.init(); }
</script>