How can I target the first drop down node (select element)?
I have tried using this code to focus on the first input, but I am looking for a way to target the first select (drop down).
$('.modal :input:first').focus();
Unfortunately, this method does not work for selecting the dropdown.
$('.modal select:first').focus();