Blog
JavaScript – Adding Cross-browser Event Listeners
Something that I need to use every once in a while is addEventListener, but unfortunately I can’t depend on its existence in all browsers. For this reason I decided to write the following cross-browser solution for providing a function that adds an event handler: One thing to note is that Read more…