Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • $('input.checkbox_check').checked returns true if it's checked, false otherwise Commented Oct 27, 2015 at 14:45
  • 1
    @mmcrae, that's incorrect. The jQuery object has no property checked. I think you meant $('input.checkbox_check')[0].checked Commented Dec 13, 2016 at 18:15
  • One of those "come on jquery" moments. They could litterally write checked: function(){return this.is(:checked)} and be done with it. Commented Sep 22, 2022 at 18:34