Click to See Complete Forum and Search --> : Select box/frames question


alcodes
10-15-2003, 06:44 PM
I have a select box on my website, it is supposed to load the chosen page into the "main" frame, strangly, this works with Inline frames, but not with a frameset, my code is listed below:
Javascript:
function l(file){
window.main.location=file+".htm";}
Every option tag:
OnClick="l('foo')"
any suggestions?

Khalid Ali
10-16-2003, 12:09 AM
instead of this
window.main.location=file+".htm";

use the following

parent.frameName.location.href = file+".html";