Java Servlets - How do I detect if a user is from a mobile device?
I'm using the TinyMCE javascript editor, and it doesn't work on the iphone. How can I detect if the user is coming from a mobile device?
|
Java Servlets - How do I detect if a user is from a mobile device? I'm using the TinyMCE javascript editor, and it doesn't work on the iphone. How can I detect if the user is coming from a mobile device? |
||||
|
Since you'd like to change the client side behaviour depending on the client, best is to handle this at the client side rather than the server side. In CSS world, you can hook on the media type to apply styles depending on the media used. Most used media types are screen (usually PCs), handheld (usually mobiles) and print (for the printed page). You can make use of it to hide the editor by just the following rule in your CSS:
You can even specify separate stylesheets depending on the media used.
If the problem is actually more that it doesn't work because JavaScript is disabled on the particular client, then you better have to execute the particular CSS when JS is disabled:
Or the other way round, initially hide it and then show it when JS is enabled:
This is more reliable than sniffing the agent in the server side. |
|||
|
|
|
Using |
|||
|
|
|
I have used the UAgentInfo.java class you can download here (http://code.google.com/p/mobileesp/source/browse/Java/UAgentInfo.java). And here is the code you need:
The UAgentInfo class has a bunch of methods to detect specific devices as well. Just replace detector.detectMobileQuick() for, for instance, detector.detectIphoneOrIpod(), detector.detectKindle(), etc... in the above code. |
||||
|
|
|
The only thing that is different is going to be the User-Agent. Lookup the User agents for the browsers you want to detect. (Not sure why you would care) You could also add some javascript to run something on the browser ? |
|||
|
|