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');
});
Leave a Reply