jQuery Mobile Frame Forwarding [on hold]
- by Nizam
I have a site that does a standard forward to another site [301 Redirect]. In the redirected site, I detect if the device is a mobile using the following code:
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.replace("Mobile/Login/Login.aspx")
} else {
…