I am trying to simulate a click on a div using jQuery. The jQuery click(), mousedown() not working.
The partial HTML code is as below(edited so that important pieces can be seen). Here is what is happening. I want to click on div.ListItem[title='foo'] whose parents parent(div.scrollArea) is actually listening for a mousedown event.
This is what I tried so far,
$("div.ListItem[title='foo']").click();
$("div.ListItem[title='foo']").mousedown();
I even tried pure Javascript click by creating events and all but that didn't work either. Anything I am missing here?
An example of similar kind of a widget can be found here. Lets say I want to click on any of the DOCNUM from the list on the right
$("div[title='D146001']").click(); this one doesn't work.
<div class="ScrollArea">=Object{events={Object { mousedown=[1]}}, .."
<div class="ListItems" style="top: 0px;">
<div class="ListItem SelectedListItem" title="(All) 1 values">(All) 1 values</div>
<div class="ListItem" title="foo">foo</div>
</div>
</div>
EDIT #1
May be I was not clear. So here I go again, I am trying to simulate a click on a div whose parents parent is listening for a 'mousedown' event. For some reason $(selector).click() is not propagating the event back up to the 'parents parent'. So my question is how do I simulate a click on a div so that a mousedown event is bubbled up to its parent parent?