I have a situation wherein I need to click on one element and then simultaneously trick the browser into receiving or thinking that another element also received a mouse click event.
jQuery pseudo code would be something like this:
$('a#someAnchor').click(function(){
$('#someDiv').i_too_was_clicked();
});
Thanks in advance!