Friday 7 January 2022

How to Get Selected Checkboxes Id onClick Using jQuery

 

Get Selected Checkboxes Id Using jQuery(Single Selection Only)

The single selected checkboxes allow selecting only one checkbox at a time. get selected checkboxes id on click of the button. See the below example to find how to get single selected checkbox id.

Output

 Virat Kohli
 Chris Gayle
 Mahendra Singh Dhoni
 Sachin Tendulkar
 Donald Bradman

You have to select one checkbox, click any checkbox given above to get its id. You are allowed to select the only single checkbox at once.

Get Multiple Selected Checkboxes Id Using jQuery

If you want to find the ids for the multiple selected checkboxes. Find the ids of selected checkboxes and get it array format. See the example below to get the ids of all the selected checkboxes.

Output

 Virat Kohli
 Chris Gayle
 Mahendra Singh Dhoni
 Sachin Tendulkar
 Donald Bradman

Click multiple checkboxes and get its ids in an array format. The above example is used to get multiple ids and use it in other ways.

No comments:

Post a Comment