![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Confirmed User
Join Date: Sep 2009
Posts: 186
|
looking for a broswer detection redirect script
Looking for a broswer detection redirect script. Example it detects ie and redirects to page 1, detects firefox and it redirects to page 2 and etc. Any suggestions?
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#2 |
Confirmed User
Join Date: Jun 2003
Posts: 3,279
|
jquery.
easy peasy. Code:
$(document).ready( function(){ if ($.browser.webkit) { window.location = 'http://www.google.com/'; } else if ($.browser.msie) { window.location = 'http://www.yahoo.com/'; } else if ($.browser.opera) { window.location = 'http://www.opera.com/'; } else if ($.browser.mozilla) { window.location = 'http://www.firefox.com/'; } }) http://api.jquery.com/jQuery.browser/
__________________
dead. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#3 | |
Confirmed User
Join Date: Sep 2009
Posts: 186
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#4 |
Confirmed User
Join Date: Jun 2003
Posts: 3,279
|
Code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script> <script> $(document).ready( function(){ if ($.browser.webkit) { window.location = 'http://www.webkit.org/'; } else if ($.browser.msie) { window.location = 'http://intrenet.net/explorer-survey-new/'; } else if ($.browser.opera) { window.location = 'http://www.opera.com/'; } else if ($.browser.mozilla) { window.location = 'http://www.firefox.com/'; } else { window.location = 'http://www.otherbrowsers.com/'; } }) </script>
__________________
dead. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#5 |
Confirmed User
Join Date: Sep 2009
Posts: 186
|
sorry for the delay but thanks for your help, i really appreciate it...
|
![]() |
![]() ![]() ![]() ![]() ![]() |