I am trying to understand what true
or false
does when adding addEventListener in Internet Explorer. According to Microsoft it is useCapture
. If I add an event such as:
element.addEventListener('click', function_name, true);
It does not appear to change anything, the listener still works. Can anyone explain the purpose of useCapture
parameter please?