I'm trying to add any JavaScript to the form, but it does not execute. For example as provided by Insert Code Samples button on CSS and JavaScript page of the form:
q36 is a dropdown, q37 is a textbox
$("#q36").change(function(){
alert("value changed");
});
$("#q37").click(function(){
alert("value changed");
});
My final goal is to fill a text box with text based on value selected in a dropdown list
Thank You