[jQuery] Re: Triggering a select list from a div onclick

2009-08-28 Thread Charlie
http://docs.jquery.com/Events/trigger exactly what you are needing Mat wrote: I need to be able to trigger (open) a select list when I click on a div. I would love something like this to be possible: Click me Option 1 Option 2 Option 3 Is there anything remotely simi

[jQuery] Re: Triggering a select list from a div onclick

2009-08-28 Thread James
And I assume you are using jQuery for this. $(function() { $("#myDiv").click(function() { $("#menu").toggle(); // toggles show/hide // $("#menu").show(); // just show }); }); Click me Option 1 Option 2 Option 3 On Aug 28, 1:29 pm, Mat wrote: > I need to