How can I change this to only execute the function if a dropdown is selected to "No"
$(document).ready(function () {
$("#dropdown_1").change(function () {
$("#textbox_1").val(1);
$("#textbox_2").val("Classic");
$("#textbox_3").val(1);
});
});
Right now, it works no matter when you change it to. I only want the above to happen if dropdown_1 is selected to No