Click to See Complete Forum and Search --> : Link out of frames


Texas Girl
05-08-2003, 02:12 PM
I have a javascript link (created by a counter) that I want to open out of the frameset. Using HTML, you would use target="_top".
The code being generated is: SCRIPT LANGUAGE="javascript" TYPE="text/javascript" SRC="http://www2.addfreestats.com/cgi-bin/easycode.cgi?usr=000000000000"

How do I need to change it so that the link loads in the entire window? I tried using target="_top", but that did not work.

Thanks in advance for your help.

Jona
05-08-2003, 02:14 PM
You have to be able to edit the script to do that. Inside of the script you must set the target to top (example: top.location.href='main.htm' would reload 'main.htm' in the same window without frames)