clear check box and hide image when clicked on drop down menu
i am trying to uncheck the check box and hide the image once i have selected the next drop down menu
i do not know how to go about it if some one can help me out please
i am trying to uncheck the check box and hide the image once i have selected the next drop down menu
i do not know how to go about it if some one can help me out please
Answers 1
For uncheck checkbox use $("#chkbox").prop("checked", false);
For hiding image use $("#image").css("display", "none");
Here is link to updated code: https://fiddle.jshell.net/uzo8ruoy/7/