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.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 10-13-2012, 11:40 PM   #1
milkhead
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?
milkhead is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-14-2012, 04:18 AM   #2
machinegunkelly
Confirmed User
 
machinegunkelly's Avatar
 
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/';
	}

})
etc ...

http://api.jquery.com/jQuery.browser/
__________________
dead.

Last edited by machinegunkelly; 10-14-2012 at 04:28 AM..
machinegunkelly is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-14-2012, 07:12 AM   #3
milkhead
Confirmed User
 
Join Date: Sep 2009
Posts: 186
Quote:
Originally Posted by machinegunkelly View Post
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/';
	}

})
etc ...

http://api.jquery.com/jQuery.browser/
thanks for your help machinegunkelly. quick question though, where do i put the code? Like does it go in the body tag, head tag or etc and how do I put something for all other browser goto page whatever.com.
milkhead is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-14-2012, 08:35 PM   #4
machinegunkelly
Confirmed User
 
machinegunkelly's Avatar
 
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>
That should work anywhere you stick it..and the last else is for all other browsers..
__________________
dead.

Last edited by machinegunkelly; 10-14-2012 at 08:40 PM..
machinegunkelly is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-23-2012, 06:57 PM   #5
milkhead
Confirmed User
 
Join Date: Sep 2009
Posts: 186
sorry for the delay but thanks for your help, i really appreciate it...
milkhead is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.