Mobile Web Detector
Mobile Web Detector
Out of context: Reply #2
- Started
- Last post
- 6 Responses
- heavyt0
There are some easy ways to detect for iPhone specifically.
var ua = window.navigator.userAgent;
if(ua.indexOf('iPhone') > -1){
window.location = '/iPhone/';
}