Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

JavaScript - How to detect the value of useCapture from an event object?

I made a function that removes an event listener after firing once or any number of times.

This is what I have:

/*jslint browser: true, vars: true, white: true, maxerr: 50, indent: 4 */
(function ()
{
    "use strict";

    function removeEventListenerAfterFiring(numberOfTimes, callback, useCapture)
    {
        var count = 0;
        return function listener(event)
        {
            count += 1;

            if (count >= numberOfTimes)
            {
                event.target.removeEventListener(event.type, listener, useCapture);
            }

            callback();
        };
    }

    function functionName()
    {
        // Code here.
    }

    window.addEventListener("DOMContentLoaded", removeEventListenerAfterFiring(1, functionName, false), false);
}());

Is there a way to detect the value of useCapture so that I don't have to pass it to the removeEventListenerAfterFiring function?

share|improve this question

1 Answer

up vote 1 down vote accepted

Go for the easy way; remove both.

event.target.removeEventListener(event.type, listener, false);
event.target.removeEventListener(event.type, listener, true);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.