With jQuery, you can use the `.val()` method to get the value of desired input checkbox.. To get the value from a checked checkbox, you can use `:checked` to select the right elements. Example 2: Using .is() Method. Why are "LOse" and "LOOse" pronounced differently? There are several ways to get to work out if a checkbox is checked or not with jQuery, and here a couple of alternatives. Check if the checkbox is checked. Steps to get checked and unchecked checkbox value in jquery Get code examples like "how to get checked and unchecked checkbox value in jquery" instantly right from your google search results with the Grepper Chrome Extension. With jQuery you can do: $('#myCheckbox').attr('checked', true); // Checks it $('#myCheckbox').attr('checked', false); // Unchecks it Cause you know, in HTML, it would look something like: