Log in

View Full Version : Third party site disclaimer (continue | decline) popup?



maruchan
08-20-2010, 08:08 PM
I need to implement a little box (a div, really...I can take care of the CSS) that pops up when a user clicks a link to a third-party website.

The box needs to have a "continue to third party site" link and a "decline" link underneath a legal disclaimer.

I've done quite a few searches but came up empty-handed. Is this pretty difficult to do? Any help would be much appreciated. I am using Mootools if that matters...but plain JS is fine. Thanks.

connor4312
08-21-2010, 05:35 AM
here (http://lmgtfy.com/?q=javascript+confirmation+popup+on+exit) ;)

connor4312
08-21-2010, 05:36 AM
But personally I think they are one of the most annoying things in the virtual world.

maruchan
08-21-2010, 08:28 PM
LOL, there's no way I would have thought of that Google query. Thanks though. The feature is a requirement by an auditing agency for a financial institution I work with. So you should talk to people in legal about that. ;-)

djr33
08-22-2010, 05:21 AM
It should be the responsibility of the user understanding when they are on a new site. Plus, this is no guarantee; if the user has JavaScript disabled, or is on an old/limited browser (cell phone?) can they then sue the company??

Beverleyh
08-22-2010, 07:23 AM
Why don't you include a few lines in your sites disclaimer that says something like;


Our website contains links to other websites. We have provided such links for convenience and
inclusion of any link does not imply our endorsement
or approval of the linked site or its content.
We are not responsible for the content of any website
outside of this one.

djr33
08-22-2010, 03:39 PM
Yes, that's what most sites do about this issue, if they do anything at all.


On the other hand, if this is absolutely required, you could use a link like http://mysite.com/go.php?url=http://google.com then use a serverside language (such as php) to redirect or generate a link only after the user reads a disclaimer. But is that really necessary?