JS: remove event listener from document?

Status
This content is read-only, or is not open for further replies.

Newsman

Guest
offline
Hey there!

Say, I've got the following code:

JavaScript:

document.addEventListener('mouseup', XF.proxy(this, 'actionEnd'));

Using the XF.proxy (which if I remember correctly will be deprecated in the future), I bind the event to a function.

Now here's my question: how do I remove that event listener again? Using removeEventListener for example did not work for me..

JavaScript:

document.removeEventListener('mouseup', XF.proxy(this, 'actionEnd'));

Even replacing the XF.proxy bit with...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom