You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<table><thead><tr><th><buttonid="selectAll" type="button">Select All</button></th><th>Name</th><th>Company</th><th>Location</th></tr></thead><tbody><tr><td><inputtype="checkbox" name="checkbox" /></td><td>Hari</td><td>Mutual of Omaha</td><td>Omaha</td></tr><tr><td><inputtype="checkbox" name="checkbox" /></td><td>Sundaragopalan</td><td>CUB</td><td>Hyderabad</td></tr></tbody></table>
constselectAllButton=document.getElementById("selectAll");selectAllButton.addEventListener("click",function(){constcheckboxes=document.querySelectorAll("input[type=checkbox]");// check if button has allChecked classif(selectAllButton.classList.contains("allChecked")){checkboxes.forEach(checkbox=>checkbox.checked=false);}else{checkboxes.forEach(checkbox=>checkbox.checked=true);}selectAllButton.classList.toggle("allChecked");})