pointer_events_polyfill icon indicating copy to clipboard operation
pointer_events_polyfill copied to clipboard

Polyfill to provide support for "pointer-events: none".

Results 20 pointer_events_polyfill issues
Sort by recently updated
recently updated
newest added

Trigger the mouse events on the element below before resetting the current target.

A relatively minor issue, and it might not be possible without serious impact on performance, but it would be nice to have the option to enable mouseover events for turning...

I have a situation where I have three canvas elements stacked on top of one other (call them #canvas1, #canvas2, #canvas3), and I need to set "pointer-events: none" on the...

I have a psuedo css style which uses :after which has the pointer-event:none assigned to, basically its a play icon on top of a thumbnail div. But I cant get...

I've gotten this plugin to allow clicks to pass through 'pointer-events:none' elements to Canvas elements without issue, and to links ('A' elements) only if they contain 'img' DOM elements (only...

explicitly list the jquery dependency, declare a `main` entry, etc.

I think it doesn't work with html tag.

Hey there, maybe it's better to use ``` if ($(e.target).css('pointer-events') == 'none') { ``` instead of ``` if ($(this).css('pointer-events') == 'none') { ``` ? Becaus inner pointer-events are ignored at...