Is there any way to have a mouse event (click, hover, scroll, etc.) register on two different divs?
I'm currently playing around with an app that uses both a leaflet map (similar to Google maps for those of you that don't know it) with a canvas element (running Processing) layered above it. Right now I can either have events register in the canvas element by doing nothing, or I can have events register in the map by giving the canvas the CSS pointer-events:none;.
Is there any straightforward way to get a click into both of them?
An alternative would be to define areas where clicks make it to one or the other. Specifically, I'd like clicks on transparent canvas areas to go through, while opaque canvas areas register clicks on them within the canvas.
$(".className").click(function(){ Your Action here });and the action is whatever you want it to be, it can even effect both divs such as$(".className").html('Affected DIVS!');Then just set your class name on both DIVS ...<div class="className">– Zak Nov 15 '12 at 2:10trigger()a.click()for a DIV you can't reach ie:$('.className').trigger('click');– Zak Nov 15 '12 at 2:14