Top "Checkbox" questions

A checkbox is a graphical user interface element that permits the user to make a binary selection.

Javascript checkbox onChange

I have a checkbox in a form and I'd like it to work according to following scenario: if someone checks …

javascript checkbox
Toggle Checkboxes on/off

I have the following: $(document).ready(function() { $("#select-all-teammembers").click(function() { $("input[name=recipients\\[\\]]").attr('checked', true); }); }); I'd like the id="…

jquery checkbox jquery-selectors toggle
Get $_POST from multiple checkboxes

I have 1 form in with multiple checkboxes in it (each with the code): <input type="checkbox" name="check_list" …

php html forms checkbox
Get a list of checked checkboxes in a div using jQuery

I want to get a list of names of checkboxes that are selected in a div with certain id. How …

jquery checkbox jquery-selectors
POST unchecked HTML checkboxes

I've got a load of checkboxes that are checked by default. My users will probably uncheck a few (if any) …

html forms post checkbox
if checkbox is checked, do this

When I check a checkbox, I want it to turn <p> #0099ff. When I uncheck the checkbox, I …

jquery checkbox if-statement checked unchecked
Using jquery to get all checked checkboxes with a certain class name

I know I can get all checked checkboxes on a page using this: $('input[type=checkbox]').each(function () { var …

jquery jquery-selectors checkbox
Angular 2 Checkbox Two Way Data Binding

I´m fairly new to Angular2 and I have a little problem: In my Login-Component-HTML, I have two checkboxes, which …

html angular typescript checkbox data-binding
How do I check/uncheck all checkboxes with a button using jQuery?

I am trying to check/uncheck all checkboxes using jQuery. Now by checking/unchecking the parent checkbox all the child …

jquery checkbox
How do I determine if a checkbox is checked?

For some reason, my form does not want to get the value of a checkbox... I am not sure if …

javascript html checkbox