Recognize browser and redirecd (ipod, ipad, iphone))
Author: Leonardo C.
Visited 3233,
Followers 2,
Shared 36
Hello,
FrompreviousentriesI realizedthat fordesign "apple" website,(iPad,iPhone)I have tomake a website withoutflash elements.
Ok,clearly,the questionnow is, where I can found that head code?
Itried dozencodesfound onlineand the resultwas justa waste of time.
Thank you.
Leonardo
Posted on the
Select the main HTML page in Site Map Creation, select page/level properties
Select Expert, select thetag,
Insert this Javascript codetag:
var ua = navigator.userAgent;
var checker = {
iOS: ua.match(/(iPhone|iPod|iPad)/) };
if (checker.iOS) { [removed] = "http://yourwebsitename.com/ipad.html;
};
Replace the "yourwebsitename.com" domain name with your site's domain address.
Use this one sorry the wind blew and screwed up what I was typing/font. It is clearer here.
Step 1 Select the main HTML page to your website the sitemap creation. Select Page Level/properties Locate thetag
Insert this Javascript code before thetag:
[removed]
var ua = navigator.userAgent;
var checker = {
iOS: ua.match(/(iPhone|iPod|iPad)/) };
if (checker.iOS) { [removed] = "http://mywebsitename.com/ipad.html;
};
[removed]
Note replace mywebsitename.com with your own
Let us know if this works
removed = javascript start and finish, Inco's site removes these prompts
To insertscript,without beingremoved, putthe textin boldand italic...
Many thanks I learnt something
Author
Hi everyone,
Many thanks for the answer, but i'm still in trouble, still doesn't work...
I've attached two picture with the position of the scripts...(the program language is italian, I hope you are able to understand, sorry)
Author
the script before head into home page proprieties
I will have to get hold of an Ipod to test again, by reason it should work. Didi you clear your browser cache after you uploaded?
Author
Hi,
Yes, I've cleared the browser cache but still doesn't work...
The background of the "mobile" website it's red, for the computer it's black...if you have any chance to test it...www.valorigroup.it
thankx
Author
I've resolved the problem using this code:
<script language=javascript>
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
{
location.replace("http://yourwebsite.com");
}
</script>
Bravo! I was just going to buy an IPad to test....thanks for saving me the money.
As a matter of interest was it before head?
Author
Yes, before the head...