Yes, but it depends on how the handler was bound in the first place.
If you used addEventListener , you can cancel the use of removeEventListener .
If you used jQuery, you can use .unbind() .
If you used attachEvent , you can use detachEvent() .
If you used onclick or other onxxx functions, you can remove them by setting null , f.ex elem.onclick = null .
David source share