Good Day
It can be done this way
script type="text/javascript">
function AddItem(Text,Value)
{
// Create an Option object var opt = document.createElement("option");
// Add an Option object to Drop Down/List Box
document.getElementById("DropDownList").options.add(opt); // Assign text and value to Option object
opt.text = Text;
opt.value = Value;
}<script />
Thank you for posting at DotnetFunda
Vuyiswa Maseko
Thank you for posting at Dotnetfunda
[Administrator]
Macson, if this helps please login to Mark As Answer. |
Reply | Alert Moderator