WebSite X5Help Center

 
Leonardo C.
Leonardo C.
User

Recognize browser and redirecd (ipod, ipad, iphone))  en

Author: Leonardo C.
Visited 2901, 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
12 ANSWERS
FLAGSA ™
FLAGSA ™
User
  • 1

    Select the main HTML page in Site Map Creation, select page/level properties 

  • 2

    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;

    };

  • 4

    Replace the "yourwebsitename.com" domain name with your site's domain  address.

Read more
Posted on the from FLAGSA ™
FLAGSA ™
FLAGSA ™
User

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

Read more
Posted on the from FLAGSA ™
FLAGSA ™
FLAGSA ™
User

removed = javascript start and finish, Inco's site removes these prompts

Read more
Posted on the from FLAGSA ™
Mirko Boschetti
Mirko Boschetti
Moderator
FLAGSA ™
removed = javascript start and finish, Inco's site removes these prompts

To insertscript,without beingremoved, putthe textin boldand italic...Wink

Read more
Posted on the from Mirko Boschetti
FLAGSA ™
FLAGSA ™
User

Many thanks I learnt somethingLaughing

Read more
Posted on the from FLAGSA ™
Leonardo C.
Leonardo C.
User
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)

Read more
Posted on the from Leonardo C.
Leonardo C.
Leonardo C.
User
Author

the script before head into home page proprieties

Read more
Posted on the from Leonardo C.
FLAGSA ™
FLAGSA ™
User

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?

Read more
Posted on the from FLAGSA ™
Leonardo C.
Leonardo C.
User
Author

Hi,

Yes, I've cleared the browser cache but still doesn't work...Yell

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

Read more
Posted on the from Leonardo C.
Leonardo C.
Leonardo C.
User
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>



Read more
Posted on the from Leonardo C.
FLAGSA ™
FLAGSA ™
User

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?

Read more
Posted on the from FLAGSA ™
Leonardo C.
Leonardo C.
User
Author

Yes, before the head...

Read more
Posted on the from Leonardo C.