How to check if you are on mobile or not : jQuery: function GetMobileOrNot() { var check = false; (function ... Code from here ) ; return check; } $( document ).ready( function () { if( GetMobileOrNot() == true ){//Do something} else{//Do something else} }); Source: http://detectmobilebrowsers.com/ Ps: And something more here