On one of my web pages, I use the following JavaScript line:
return !!(a.compareDocumentPosition(b) & 16);
However, only in IE9, I get the following error:
The object does not support the property or method 'compareDocumentPosition'
Other browsers work fine. Does anyone know of available fixes or workarounds for this?
source share