A) The inline frame that i have in the page doesnt show at all.
B) i have this javascript code
Code: Select all
function addOption(selectbox,text,value)
{
alert(selectbox);
var optn = document.createElement("OPTION");
optn.text = text;
optn.value = value;
selectbox.options.add(optn);
}I have this alert(selectbox) there just to see if there is a problem with the way selectbox is passed but its all ok. The alert shows "OPTION SELECT"
Does anyone have any ideas on those issues?
Thanks in advance