Skip to content
Advertisement

How to remove static array after uncheck checkbox in jquery

I have two checkboxes, and I want whenever I click on any checkbox then their values (static array) should be inserted into “final” array (empty array). If I uncheck that checkbox then its value (static array) should be remove from “final array”.

Right now I am inserting/pushing “static” array into blank array (final array), but I want to know that how can I remove this “static” array after uncheck checkbox ?

JavaScript
JavaScript

Advertisement

Answer

As noted in the comments, you can rebuild the array each time.

Assuming you want a 1-dimensional array rather than an array of arrays, you can use

JavaScript

to add the array items.

I’ve used a switch here to match the checkbox value with the array variable, but a better solution for this part (already provided in another answer) is to use an object and get the array by key. I’ve kept this with the switch to show the difference and use of .push(...array)

JavaScript
JavaScript

Also in fiddle: https://jsfiddle.net/cwbvqmp4/

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