Select tag with input tag display none or block | How can I show a hidden div when a select option is selected?
Select tag with input tag display none or block <!DOCTYPE html> <html> <head> <style> #hidden_input { display: none; } </style> </head> <body> <select id=”test” name=”form_select” onchange=”showDiv(‘hidden_input’, this)”> <option value=”0″>Hide</option> <option…