Select all images on Pinterest for moving to another board Select all images on Pinterest for moving to another board ajax ajax

Select all images on Pinterest for moving to another board


I tried triggering click event on each element and it worked perfectly for me. Couldn't try it with scroll because I don't have that many images in my board.

function checkAll() {    console.log("Checkboxes count: " + checkBoxes.length);    $.each(checkBoxes, function(i, v) {        console.log("Checkbox #: " + i) // + " = " + v);        $(this).trigger('click');    });}var checkBoxes = $("div > div > div.bulkEditPinWrapper > button");checkAll();

Let me know if it works for you.