add dropdown option
5
add dropdown option.this is simple
function addOption(selectbox,text,value )
{
var optn = document.createElement("OPTION"); optn.text = text; optn.value = value; selectbox.options.add(optn);
}
{
var optn = document.createElement("OPTION"); optn.text = text; optn.value = value; selectbox.options.add(optn);
}






There are currently no comments for this snippet.