Clicking Select Box
Clicking Select Box
You know when you click on a select box (size=1) and then the options show up? I'm looking to simulate that with jQuery.
What I would like to happen is I have an image I am using as my "down arrow". It would be a custom image laid over the select box. If you click the select, it will drop down the options, but if you click the image, nothing happens. I want those options to drop down.
I got as far as
$('select').click(function(){
$(this).focus();
});
but it's not a focus I want, and .click() doesn't work.
Any ideas?
Thanks,
~Jeremy