View Single Post
Old 02-13-2010, 06:43 PM  
candyflip
Carpe Visio
 
candyflip's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: New York
Posts: 43,052
And with javascript:

Code:
<!--JAVASCRIPT MOBILE SITE REDIRECTION CODE-->
<script type="text/javascript">
MOBILE_URL = "http://www.yourdomainhere.com";

// Do not edit below
var WORDS = ["mobile", "blackberry", "j2me", "webos", "windows ce", "android", "nokia", "samsung", "LG", "palm", "PSP"];
var WLEN = WORDS.length;
for (var i = 0; i < WLEN; i++)
{
	var re = new RegExp(WORDS[i], "i");
	if (re.exec(navigator.userAgent))
	{	
		window.location = MOBILE_URL;
		break;
	}
}
</script>
__________________

Spend you some brain.
Email Me
candyflip is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote