I'm getting all the option drop downs like so
var options = $(".options");
Then I try a simple jquery .val to select the second option
options[0].val("1")
And I get the following error
options[0].val is not a function
Notes:
console.log(options[0]); // returns <select>...</select>
Update Edit
https://codepen.io/TylerL-uxai/pen/NaxyJK?editors=1010 Relevant code is near the bottom --> listsDropDown