Ryan
Ryan

Reputation: 6227

Load mobile CSS if user is on Android

My .htaccess file is writing a "smart" cookie. If my page reads this cookie it will write a div. Then my mobile CSS file loads only if the user's on an iPhone or iPod.

My question is, how can I edit this code (below) to load the mobile CSS file if the user's on an Android?

Here's my page and code:

<meta name="viewport" content="width=device-width, user-scalable=yes" /> 
<link rel="stylesheet" type="text/css" href="css/mobile.css" media="only screen and (max-width: 640px)" /> 
<script type="text/javascript">
if (window.screen.width > 640){document.write('<meta name="viewport" content="width=980, user-scalable=yes" />')}
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))){document.write('<link rel="stylesheet" type="text/css" href="css/mobile.css" media="only screen and (max-width: 640px)" />')}
</script>

Upvotes: 4

Views: 7794

Answers (3)

Joe
Joe

Reputation: 82634

This snippet will do it:

navigator.userAgent.match(/android/)

Upvotes: 0

Xavier
Xavier

Reputation: 8362

Here you goes :)

http://davidwalsh.name/detect-android

Upvotes: 1

Jason Gennaro
Jason Gennaro

Reputation: 34863

You should just be able to add

|| (navigator.userAgent.match(/Android/i))

to the second if statement, so

if( (navigator.userAgent.match(/iPhone/i)) || 
    (navigator.userAgent.match(/iPod/i)) || 
    (navigator.userAgent.match(/Android/i)) ) 

Upvotes: 5

Related Questions