I'm developing a site in jQuery mobile (jQM). It's great, but one thing is troubling me.
jQM is not supported in all mobile browsers (notably BlackBerry 5). The site looks gorgeous in the Android browser: on Opera Mini on Android, it's actually broken :(
I've developed the site using progressive enhancement, naturally. So it works without jQM - if I can tell the browser not to use it!
Question: for platforms like Opera Mini on Android, is there a way I can check for jQM support, and totally unapply jQM as appropriate?
- If jQM is supported in this browser, use it.
- If it isn't, don't load the jQM javascript, don't load the jQM stylesheets, and use the basic JavaScript site.
I know about the gradeA() property, but you presumably have to load jQM to use it:
$.mobile.gradeA()
Thanks!