I have been asked to create an actual HTML page / javascript to simulate detection of the mobile devices (iphone/ipad/android) using javascript code. This will then take the user to a different screen which asks them for their email address.
|
|
You would detect the requesting browsers user agent string, and then decide based on what it is if it's coming from a mobile browser or not. This device is not perfect, and never will be due to the fact that user agents aren't standardized for mobile devices (at least not to my knowledge). This site will help you create the code: http://www.hand-interactive.com/resources/detect-mobile-javascript.htm Example: You could get the user agent in javascript by doing this:
And then do the check's in the same format as this (just using iPhone as a quick example, but others would need to be a little bit different)
Edit You'd create a simple HTML page like so:
|
|||||||||
|
|
A pretty simple solution is to check for the screen width. Since almost all mobile devices have a max screen width of 480px (at present), it's pretty reliable:
The user-agent string is also a place to look. However, the former solution is still better since even if some freaking device does not respond correctly for the user-agent, the screen width doesn't lie. The only exception here are tablet pc's like the ipad. Those devices have a higher screen width than smartphones and I would probably go with the user-agent-string for those. |
||||
|
|
|||
|
|
You can use the user-agent string to detect this.
You can find a list of useragent strings here http://www.useragentstring.com/pages/useragentstring.php |
|||
|
|
|
Determine what the User Agent is for the devices that you need to simulate and then test a variable against that. for example:
|
||||
|
|
|
A simple solution could be css-only. You can set styles in your stylesheet, and then adjust them on the bottom of it. Modern smartphones act like they are just 480px wide, while they are actually a lot more. The code to detect a smaller screen in css is
Hope this helps! |
|||
|
|
|
|||
|
|
