/ Published in: JavaScript
URL: http://alan.edward.es/posts/detecting-the-awesomeness-that-is-mobile-safari/
Expand |
Embed | Plain Text
function ismobilesafari() { if( navigator.userAgent.match( /(iPod|iPhone|iPad)/ ) ) { return true } else { return false } } if( ismobilesafari() ) { document.write( "It's Mobile Safari." ) } else { document.write( "Nope, it's another browser." ) }
You need to login to post a comment.
