Can I open a dropdownlist using jQuery

I was trying to find the same thing and got disappointed.
I ended up changing the attribute size for the select box so it appears to open

$('#countries').attr('size',6);

and then when you’re finished

$('#countries').attr('size',1);

Leave a Comment