var isMobile = { Android: function() { return navigator.userAgent.match(/Android/i); }, BlackBerry: function() { return navigator.userAgent.match(/BlackBerry/i); }, iOS: function() { return navigator.userAgent.match(/iPhone|iPad|iPod/i); }, Opera: function() { return navigator.userAgent.match(/Opera Mini/i); }, Windows: function() { return navigator.userAgent.match(/IEMobile/i); }, any: function() { return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows()); } }; if( isMobile.any() ){ jQuery("body").css("background","none"); } if(!(isMobile.any())){ jQuery("a[href='tel:096432052225']").attr("href","javascript:showNumber()"); } function showNumber(){ jQuery("body").append("
09643/2052225
"); } function hideNumber(){ jQuery(".overlay,.number").hide(); }