Skip to content
Advertisement

javascript executing both if else blocks

my Javascript function is executing both if else blocks. I want to add checkbox value in array if it is checked and remove value if its unchecked.

The output is inside if and inside else. But i want to run either if or else block.

Edit: I am generating dynamic label tags using php. I just shown one label tag in this example for understanding. But value of each input tag is assgined from database and is wrapped in label tag.

JavaScript
JavaScript

Advertisement

Answer

I just shown one label tag in this example for understanding

That was very unlucky, cause problem with your solution occurring only when there is more than 1 input element.

JavaScript

This line is problematic, cause logic inside it is triggered on all inputs every time you click any of them. Additionally this iteration is not needed at all, cause you already passing element to function (current).

Working solution after changes:

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