I need to clear the input in a dropdown pick list upon loading a form, every time. The following JavaScript works if the field is a radio button choice, but this time I'm trying to do it for a drop down pick list.
What would have to change in order for this to work for a drop-down field? I'm guessing "checkbox" changes to "drop-down", but what would 'checked' be changed to.
//clears the checkbox for Assign Tasks? upon reload//
$(document).ready(function() {
$('.alwaysclear input[type="checkbox"]').prop('checked', false);
});