Thread profile page for "removeEventListener extension ?" on http://www.kirupa.com.
This report page is a snippet summary view from a single thread "removeEventListener extension ?", located on the Message Board at http://www.kirupa.com.
This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity, which are reported in a table below.
Additional thread profile information is also shown in the following ways:
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a thread's popularity and/or exact posting volumes at any given reporting period.
Started 2 months ago (2008-07-03 21:51:00)
by senocular
Basically you have to make your own version of addEventListener for whatever object you're adding listeners to. This method, when called, will catalog the arguments passed (the first 3 represent the signature for the event) and save those for a later time to be called in removeEventListener for removal while calling the original addEventListener to make sure the listener is actually added. ...
Started 2 months ago (2008-07-03 22:01:00)
by sekasi
Great, thanks Senocular. Might be inefficient but this way feels more logical to me instead of typing each removeEventListener every time, especially when there's a couple of them attached to the same object. Anyway, thanks! I'll get on it.