10 examples of 'jquery get checkbox checked' in JavaScript

Every line of 'jquery get checkbox checked' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
3function check_checkbox (checkbox) {
4 if (checkbox.prop('checked')) {
5 checkbox.parents('label.checkbox').addClass('checkbox_state_cheked');
6 } else {
7 checkbox.parents('label.checkbox').removeClass('checkbox_state_cheked');
8 }
9}
78function set_checkbox_value(id, value) {
79 $('#' + id).prop('checked', value);
80}
110function isChecked(id,name){
111 var elem = goog.dom.getElement(id);
112 return elem.checked;
113};
12function uncheckCheckBox(checkbox){
13 $(checkbox).removeAttr("checked");
14}
5function checkboxChanged(checkboxInput) {
6 var $rgbaInput = $(checkboxInput).siblings('input.cascade-rgba');
7 var $colorInput = $(checkboxInput).siblings('input[type="color"]');
8 if (checkboxInput.checked || checkboxInput.disabled) {
9 $rgbaInput.addClass('disabled');
10 $colorInput.addClass('disabled');
11 } else {
12 $rgbaInput.removeClass('disabled');
13 $colorInput.removeClass('disabled');
14 }
15}
74function set_radio_checked(id) {
75 $('#' + id).prop('checked', true);
76}
191function isChecked(checkboxElement) {
192 return checkboxElement.hasClass(CHECKED_CSS);
193}
165function ph_get_checked (sel)
166{
167 var el = ph_find(sel);
168 if (el.checked === undefined)
169 throw sel + " is not checkable";
170
171 return el.checked;
172}
631function GetFancyCheckboxState( id )
632{
633 var input = $J( '#' + id + '_input');
634 var bChecked = false;
635 if ( input.is(":checkbox") )
636 bChecked = input.is( ':checked' );
637 else
638 bChecked = (input.val() == "true" || input.val() == "1" || input.val() == 'on');
639
640 return bChecked;
641}
76function getCheckbox(elem) {
77
78 var index = $.inArray(elem, getTargetElems());
79 if (index == -1)
80 return null; // ?
81 var checkbox = checkBoxes.eq(index);
82 return checkbox;
83}

Related snippets