hello...help me rapidly..
query is that.. when we select the mail from the select tag and then automatically display the two text box like user name and contact no.. how i do this...? but remeber it that without use button....i hope as soon as i vl get my perfect ans...

Recommended Answers

All 3 Replies

This can be done in many ways, here is the one quick solution..

<script>
function PerformAction() {
    var SelectedValue = document.Form.SelectValue.value;
    if(SelectedValue == "mail") document.getElementById("VisibleID").style.visibility="visible";
    else document.getElementById("VisibleID").style.visibility="hidden";
    return false;
}
</script>
<form action="" method="get" name="Form">
  <select onchange="PerformAction()" name="SelectValue">
    <option value=""></option>
    <option value="mail">Mail</option>
  </select>
  <div style="visibility:hidden;" id="VisibleID"> Username :
    <input name="" type="text" />
    <br/>
    Contact Number :
    <input name="" type="text" />
  </div>
</form>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.