I have found many answers to the question:
How do I show/hide DIV on selection of \"Other\" dropdown value.
However I cannot fin
Select question... Question One Question Two Question Three Question Four Question Five Question Six $(document).ready(function(){ $(".spl-div").hide(); $("option[id*='show-div']").bind('click', function(){ $('.spl-div').show(); }); $("option[id*='hide-div']").bind('click',function(){ $(".spl-div").hide(); }) });