Forum Moderators: open
I have two pulldown menus. When the left one is changed, the menu options for the right one do as well. When a user then selects an option on the right, it goes to a certain URL. I can do this, but how do I get the new URL to appear in my bottom frame, not the whole page? Here is the code for url. My bottom frame is called "bot". THANKS!!!!
function changepage(index){
var url=document.categoryform.productmenu.options[index].value;
if (url != ""){
if(url != "null")
top.location=url;
Thank you for your help. It made my day.