Skip to content
Advertisement

JavaScript unwanted event auto-triggered

The on click event in the 70 line (ob.addEventListener("click",onCl1(idTable[0],idTable));) is being triggered without a reason. I have tried some other ways and it still reacts the same. I present the whole code as I think that it will be easier to find this bug:

JavaScript

Advertisement

Answer

It’s because you’re calling your event handler function instead of passing a function when you try to add the event listener.

JavaScript

Anytime you write functionName( argument, argument, ... ) the function will be called at that point in the code. That’s whats going on in your code; there are no magic rules for calls to addEventListener(). Thus you have to wrap your function call with your parameters in another function, and pass that function as the second argument.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement