add dropdown option





5
Date Submitted Tue. Aug. 28th, 2007 2:33 PM
Revision 1 of 1
Beginner ees
Tags "ASP" | "JScript"
Comments 0 comments
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);                               
}
 

ees war

Comments

There are currently no comments for this snippet.

Voting