Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>The Internet Explorer recognizes pointer events: none</strong>, but only for SVG elements because pointer-events are only specified for SVG elements in the W3C specification (<a href="http://www.w3.org/TR/SVG/interact.html#PointerEventsProperty" rel="noreferrer">http://www.w3.org/TR/SVG/interact.html#PointerEventsProperty</a>).</p> <p>You can try it with something like this...</p> <p><strong>CSS:</strong></p> <pre><code>#tryToClickMe{ pointer-events: none; width: 400px; height: 400px; background-color: red; } </code></pre> <p><strong>HTML:</strong></p> <pre><code>&lt;svg id="tryToClickMe"&gt;&lt;/svg&gt; </code></pre> <p>This works in IE9 and IE10 (I tested it). If you are not yet using SVG elements, then there is the posibility to wrap your existing elements in a SVG. The jQuery library provides a wrap method for that (<a href="http://api.jquery.com/wrap/" rel="noreferrer">http://api.jquery.com/wrap/</a>).</p> <p>There is a very good German article that has broken down the characteristics of the pointer events property: <a href="http://www.bennyn.de/programmierung/html/unterschiedliche-implementierungen-der-eigenschaft-pointer-events.html" rel="noreferrer">http://www.bennyn.de/programmierung/html/unterschiedliche-implementierungen-der-eigenschaft-pointer-events.html</a> - There you will find (with the help of Google Translate) more information.</p> <p>Hope I could help</p> <p>Benny</p> <p>P.S. If you want to access overlying and underlying objects, then you can use the <strong>document.msElementsFromPoint</strong> method in IE (<a href="http://msdn.microsoft.com/de-DE/library/windows/apps/hh465811.aspx" rel="noreferrer">http://msdn.microsoft.com/de-DE/library/windows/apps/hh465811.aspx</a>). It will give you all layers on a given point in an array.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload