$(document).ready(function(){ $("a").not(".popup").click(function (event) { event.preventDefault(); window.location = $(this).attr("href"); }); });
<meta name="apple-mobile-web-app-capable" content="yes" />
What about for Android devises ... will this meta tag work for them as well - OR - is there another meta for Android?
Bruce Buttles wrote:
Oh, so I found this tag: mobile-web-app-capable
So, now it works on Android w/Chrome as well.
HOWEVER, both of these only work if you are opening it from a Home shortcut (your step #3).
Sooooo ... how can we make full-screen happen EVEN when the user comes from a URL?
Thanks!