php Programming Glossary: agent.indexof
What are available solutions of a browser / mobile phone detection http://stackoverflow.com/questions/15055277/what-are-available-solutions-of-a-browser-mobile-phone-detection text javascript var agent navigator.userAgent var isWebkit agent.indexOf AppleWebKit 0 var isIPad agent.indexOf iPad 0 var isIOS agent.indexOf.. var isWebkit agent.indexOf AppleWebKit 0 var isIPad agent.indexOf iPad 0 var isIOS agent.indexOf iPhone 0 agent.indexOf iPod 0.. AppleWebKit 0 var isIPad agent.indexOf iPad 0 var isIOS agent.indexOf iPhone 0 agent.indexOf iPod 0 var isAndroid agent.indexOf Android..
Detect iPhone Browser http://stackoverflow.com/questions/3827466/detect-iphone-browser you can write var agent navigator.userAgent var isIphone agent.indexOf 'iPhone' 1 agent.indexOf 'iPod' 1 if isIphone window.location.href.. navigator.userAgent var isIphone agent.indexOf 'iPhone' 1 agent.indexOf 'iPod' 1 if isIphone window.location.href 'http www.yourwebsite.com..
|