Files
2025-05-12 15:45:17 +00:00

10 lines
260 B
JavaScript

$(document).ready(function () {
$('#selectAll').click(function (e) {
var elements = $('.make_pdf');
// Do something with the elements
elements.each(function() {
$(this).prop('checked', true);
});
});
});