I have the following problem:
I created a webapp using jQuery Mobile 1.2. Now I want to run this application in full screen mode without an address bar, toolbar, etc. I have already searched the Internet and found out that there are some meta tags to enable this mode:
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" />
It still works. But I also read that these tags are specific to iOS and will be ignored under Android. I thought that the framework should automatically switch the mode, but it does not work. Is there a special global variable that I have to manipulate, or a frame function to call or a script to enable?
Thanks in advance!
source share