scribes
I have the following code for radio buttons
dim line
<input type ="radio" name="line_type " value="isdn"> isdn
<input type ="radio" name="line_type " value="lse"> lse
what i want is that for a button when clicked
if isdn is checked then line=isdn
else
if lse is checked then line=lse
else
alert ("no option selected")
I have the following code for radio buttons
dim line
<input type ="radio" name="line_type " value="isdn"> isdn
<input type ="radio" name="line_type " value="lse"> lse
what i want is that for a button when clicked
if isdn is checked then line=isdn
else
if lse is checked then line=lse
else
alert ("no option selected")
Comment