I’ve tried a few different ways to clear the selected value in a list, but I haven’t had any luck. I am using the same list over and over, and I would like to clear the selection before showing the list to the user. I saw the post on accessing the hidden select list using:
$(‘#m1-myPage-hidden-select-myList’)
but setting the val(…) on that doesn’t seem to change the list. I also tried:
$(‘select[name=”myList”] :selected’).selected = false;
Any help would be appreciated.