I'm working on a bank website that needs disclaimers on their external links. I've searched for a tutorial or a script I could understand but need additional help if anyone is willing..
Here's my page with external links:
http://designphilanthropy.org/services/links/
Here's the js I used from the previous bank design (I don't see any code here that will do what I need):
And here's the code on the "yes" button:Code:<script language="javascript"> <!-- Hide window.resizeTo(440, 440); function go() { var width = screen.width; var height = screen.height; if(width<650) { width = 600; height = 400; } else { width = width - 200; height = height - 100; } window.resizeTo(width, height); location.href=""; } // end Hide --> </script>
Code:<input type="button" VALUE="YES" onclick="javascript:go();">
The link opens the disclaimer and populates the url in the browser, but I don't know how to write the js for it to continue to the destination after clicking "yes"
Any help would be greatly appreciated...


Reply With Quote
Bookmarks