I would like to know how to show/hide different forms based one form\'s selection.
In the sample code below all three forms are automatically set to display:none. I woul
make this
create function javascript that help u with that work, something like this
function FFF(){ var opc = document.getElementById("form-shower").value; switch(opc) { 'form_name1': document.getElementById('form_1').style.display = "block"; // or inline or none whatever break;
} }
Create event