is there a script to detect, if the visitor use iphone (whatever it's browser, may iphone Safari, iPhone for Opera or etc.)?
Then will shutdown some some of my JavaScript.
Thanks...
|
is there a script to detect, if the visitor use iphone (whatever it's browser, may iphone Safari, iPhone for Opera or etc.)? Then will shutdown some some of my JavaScript. Thanks... |
|||
|
|
|
searching on the net there are two common ways of achieving this. My favorite though is in PHP its just so clean? wow. :D In PHP you can write
and in javascript you can write
Hope that helps. PK |
|||||||||||
|
|
The conventional wisdom is that iOS devices have a user agent for Safari and a user agent for the UIWebView. This assumption is incorrect as iOS apps can and do customize their user agent. The main offender here is Facebook. Compare these user agent strings from iOS devices:
Note that on the iPad, the Facebook UIWebView's user agent string includes 'iPhone'. The old way to identify iPhone in JavaScript:
If you were to go with this approach for detecting iPhone, you would end up with IS_IPHONE being true if a user comes from Facebook on an iPad. That could create some odd behavior! The correct way to identify iPhone in JavaScript:
We declare IS_IPHONE to be false on iPads to cover for the bizarre Facebook UIWebView iPad user agent. This is one example of how user agent sniffing is unreliable. The more iOS apps that customize their user agent, the more issues user agent sniffing will have. If you can avoid user agent sniffing (hint: CSS Media Queries), DO IT. |
||||
|
|
This script checks for iPhone or iPod in the userAgent and then executes an action. Give this a try. |
|||||
|
|
Although I like the answers here, I think its better to use the following ... http://www.htaccesstools.com/articles/detect-and-redirect-iphone/
OR
This is a .htaccess alternative, which means leaves you more room to deal with php :) hope it helps |
|||
|
|