PDA

View Full Version : Mobile Redirect Help


shadowgfx
02-15-2010, 05:25 AM
Alright. I run a mobile forum, but when a PC user comes to my site, I want that person to be redirected to a different style. I got that part to work, but when it redirects, it goes to the homepage instead of lets say a forum link, or thread link I gave them. Is there not a way for it to redirect, then at the end of the url have "?styleid=10" ?

Here is the code I have in the header of my mobile skin:

<script type="text/javascript">
<!--
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))){}
else {window.location = "./?styleid=10";}
-->
</script>

I'm not a professional coder, so I need some help.