Using jquery, how would I make a SELECT menu display itself without actually clicking on it?
I tried sending a click() event (in Safari and Firefox) but no luck.
$('#myselectmenu').click();
Also tried focus() and select() (and various combinations of the three).
Any ideas?
Thanks!