When binding events in JavaScript (programming so that a function runs when clicked), I think most people use 'addEventListener'. This time, I ran into a situation where I wanted to 'pass an argument ...
Both onclick and addEventListener javascript function will work but sometimes it creates problem for developers to understand what the exact difference of these two's are. var h = ...
When I add addEventListener in my JS file for 'change' it never triggers when an option is selected. If I add inline 'onchange' in my HTML it works but I prefer to use event listeners in my JS file.