Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,472
There are 1926 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Business and Website Management     Blogging and Community Building :

Warning, Leaving Site

Thread title: Warning, Leaving Site
Closed Thread  
Page 1 of 2 1 2 >
    Thread tools Search this thread Display Modes  
04-17-2008, 04:13 AM
#1
MatthewC is offline MatthewC
Status: Junior Member
Join date: Apr 2008
Location:
Expertise:
Software:
 
Posts: 27
iTrader: 0 / 0%
 

MatthewC is on a distinguished road

  Old  Warning, Leaving Site

I have wordpress installed is their any plug in or script I can Install so when the user clicks a external link it displays a message?

04-17-2008, 04:52 AM
#2
BrokenFaith is offline BrokenFaith
BrokenFaith's Avatar
Status: Creatistic
Join date: Jul 2006
Location: Arizona
Expertise:
Software:
 
Posts: 1,726
iTrader: 5 / 100%
 

BrokenFaith is on a distinguished road

Send a message via AIM to BrokenFaith Send a message via MSN to BrokenFaith

  Old

http://www.talkfreelance.com/f89-.html

Darn, I wonder why they would add such a category?

04-17-2008, 05:07 AM
#3
Andrew R is offline Andrew R
Status: Request a custom title
Join date: Dec 2005
Location: Arizona
Expertise:
Software:
 
Posts: 5,200
iTrader: 17 / 95%
 

Andrew R is on a distinguished road

  Old

Originally Posted by BrokenFaith View Post
http://www.talkfreelance.com/f89-.html

Darn, I wonder why they would add such a category?
IT'S A CONSPIRACY!

04-17-2008, 06:04 AM
#4
MatthewC is offline MatthewC
Status: Junior Member
Join date: Apr 2008
Location:
Expertise:
Software:
 
Posts: 27
iTrader: 0 / 0%
 

MatthewC is on a distinguished road

  Old

Oh oops, So is their a way to do this?

04-17-2008, 06:13 AM
#5
BrokenFaith is offline BrokenFaith
BrokenFaith's Avatar
Status: Creatistic
Join date: Jul 2006
Location: Arizona
Expertise:
Software:
 
Posts: 1,726
iTrader: 5 / 100%
 

BrokenFaith is on a distinguished road

Send a message via AIM to BrokenFaith Send a message via MSN to BrokenFaith

  Old

I know nothing about wordpress; but this is the closest I could find was

http://sw-guide.de/wordpress/plugins/link-indication/

Seems like you can add an attribute to the link itself, as for a warning, Im not sure. Ask a better blogger guru.

04-17-2008, 06:22 AM
#6
Garrett is offline Garrett
Status: Waving
Join date: Aug 2005
Location:
Expertise:
Software:
 
Posts: 2,694
iTrader: 11 / 100%
 

Garrett is on a distinguished road

Send a message via MSN to Garrett

  Old

<offtopic kinda="true" ignore="at-own-will">I was getting ready to make a smart ass comment due to the topic title...

kbyegoodtoknowukthxbye</offtopic>

One idea I have, is to use a tool like Prototype, to get every link with the http:// in the href attribute, and addon a "onclick" handler, which will take them to a url that is specified.

I will write one for you.

04-17-2008, 06:32 AM
#7
Garrett is offline Garrett
Status: Waving
Join date: Aug 2005
Location:
Expertise:
Software:
 
Posts: 2,694
iTrader: 11 / 100%
 

Garrett is on a distinguished road

Send a message via MSN to Garrett

  Old

www.xhtmlthis.com/tutorial/test.html

Update:
Download the Prototype Library, and include it on your page.

Then use this code:
Code:
Event.observe(window, 'load', function() {
	$$('a[href^="http://"]').each(function(element) {
		element.observe('click', function(event) {
			window.location = 'http://www.xhtmlthis.com/tutorial/url.php?url='+this.href;
			Event.stop(event);
		}.bindAsEventListener(element))
	});
});
It will look for all URLS with http:// in the beginning and do what you want when they click on it. So in this case go to a php page that asks them.

You can test it out, I have different examples on the page. When they redirect it will give you an example of what you wanted.

Update 2:
I am going to make a Greasescript for this, to prank people
All links will go to some random site.

04-18-2008, 05:58 AM
#8
MatthewC is offline MatthewC
Status: Junior Member
Join date: Apr 2008
Location:
Expertise:
Software:
 
Posts: 27
iTrader: 0 / 0%
 

MatthewC is on a distinguished road

  Old

So, How do I install this?


Originally Posted by Garrett View Post
www.xhtmlthis.com/tutorial/test.html

Update:
Download the Prototype Library, and include it on your page.

Then use this code:
Code:
Event.observe(window, 'load', function() {
	$$('a[href^="http://"]').each(function(element) {
		element.observe('click', function(event) {
			window.location = 'http://www.xhtmlthis.com/tutorial/url.php?url='+this.href;
			Event.stop(event);
		}.bindAsEventListener(element))
	});
});



It will look for all URLS with http:// in the beginning and do what you want when they click on it. So in this case go to a php page that asks them.

You can test it out, I have different examples on the page. When they redirect it will give you an example of what you wanted.

Update 2:
I am going to make a Greasescript for this, to prank people
All links will go to some random site.

04-18-2008, 06:04 AM
#9
BrokenFaith is offline BrokenFaith
BrokenFaith's Avatar
Status: Creatistic
Join date: Jul 2006
Location: Arizona
Expertise:
Software:
 
Posts: 1,726
iTrader: 5 / 100%
 

BrokenFaith is on a distinguished road

Send a message via AIM to BrokenFaith Send a message via MSN to BrokenFaith

  Old

Originally Posted by MatthewC View Post
So, How do I install this?

Download the Prototype Library, and include it on your page.

Then use this code:
^^.

04-17-2008, 06:45 AM
#10
Josh Greenaway is offline Josh Greenaway
Status: Member
Join date: May 2007
Location: Great Britain
Expertise:
Software:
 
Posts: 167
iTrader: 5 / 100%
 

Josh Greenaway is on a distinguished road

Send a message via MSN to Josh Greenaway

  Old

I'm not sure that's what he wanted exactly.

I think he wants something where you click a link which is linked to an external website and a pop-up appears with a message, then you click 'Ok' to continue..

Pretty much what you done though, Garrett. It's the same concept.

Closed Thread  
Page 1 of 2 1 2 >


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed