Cogito ergo sum

Select all checkboxes on a webpage using Jquery1 min read

I wanted to select all inbox messages on a website which I use for the university, the website doesn’t have a “select all ” functionality.
This jquery code snippet selects all checkboxes and check them.

jQuery('input:checkbox').each(function () { 
  var elem= jQuery(this);
  elem.trigger('click');
});

 

About the author

Peshmerge Morad

Data Science student and a software engineer whose interests span multiple fields.

Add comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

By Peshmerge Morad
Cogito ergo sum