jQuery :checkbox Selector Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The jQuery :checkbox Selector is a very important element to make interactions with a user. In JQuery, we can build a simple checkbox to allow data entry as well. Syntax: $(":checkbox")We can implement the checkbox in the code: Example 1: In this example, we will select the input element which has a checkbox field button by using jQuery :checkbox Selector. HTML <!DOCTYPE html> <html> <head> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <style> p { font-size: 20px } </style> <script> $(document).ready(function () { $(":checkbox").wrap( "<span style='background-color:green'>"); }); </script> </head> <body> <h2>Add your Hobbies:</h2> <p>Dancing: <input type="checkbox" name="hobbies" value="dancing"> <br> Painting: <input type="checkbox" name="hobbies" value="painting"> <br> Singing: <input type="checkbox" name="hobbies" value="singing"> <br> </p> </body> </html> Output: Example 2: In this example, we will change the background color of the input element which has a checkbox field button with click function. HTML <!DOCTYPE html> <html> <head> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <style> p { font-size: 20px } </style> <script> $(document).ready(function () { $("button").click(function () { $(":checkbox").wrap( "<span style='background-color:red'>"); }); }); </script> </head> <body> <h2>Languages:</h2> <p>Python: <input type="checkbox" name="hobbies" value="dancing"> <br> C++: <input type="checkbox" name="hobbies" value="painting"> <br> Java: <input type="checkbox" name="hobbies" value="singing"> <br><br> <button>Change color</button> </p> </body> </html> Output: Create Quiz Comment X XDoodler Follow 1 Improve X XDoodler Follow 1 Improve Article Tags : Web Technologies JQuery jQuery-Selectors Explore jQuery Tutorial 7 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like