anuj_web
New Member
- Messages
- 145
- Reaction score
- 0
- Points
- 0
NOTHER Q
I just want to stor values from 1 to 31 in a combobox.....I tried this code...but
Cannot run th is fuction in the Onclick event ,also not working in Onchange event
I just want to stor values from 1 to 31 in a combobox.....I tried this code...but
Cannot run th is fuction in the Onclick event ,also not working in Onchange event
Code:
<select name="cmbmonth" size="1" id="Combobox8" style="position:absolute;left:181px;top:341px;width:73px;font-family:MS Shell Dlg;z-index:17" OnChange = "Populatecmbdate(document.frmdreg)">
Code:
function Populatecmbdate(theForm)
{
for(var i=1 ; i < 32 ; i++)
{
eval("theForm.cmbdate.options[i]=" + i);
}
}
}
Last edited: