I have a seperate page that serves my mobile visitors. Currently I have set up my main page to redirect to the mobile site like this:
This causes screens with less than 700px screens (Mobile Phones and stuff) to redirect to my mobile site and this works.HTML Code:<script type="text/javascript"> <!-- if (screen.width <= 700) { window.location = "http://my-mobile-site.com"; } //--> </script>
HOWEVER...
I would like to use a Yes/No box or a Ok/cancel box. I have tried doing it like this:
Only this does not work.HTML Code:<script type="javascript"> <!-- if (screen.width <= 700) { var answer = confirm("Visit Mobile Site?") if (answer){ window.location = "http://my-mobile-site.com"; } else { } } --> </script>
Any Help or sugestions?


Reply With Quote

Bookmarks