mourningdove/htdocs/js/components/jquery.select-all-special.js

16 lines
444 B
JavaScript
Raw Permalink Normal View History

2026-05-24 01:03:05 +00:00
(function($) {
$.fn.selectAll = function() {
var $table = $(this);
$("input[data-select-all]", this).click(function(e) {
var $checkbox = $(this);
$table
.find( "input[data-selected-by=" + $checkbox.data("select-all") + "]" )
.prop( "checked", $checkbox.is(":checked") )
})
}
})(jQuery);
jQuery(function($) {
$("table.select-all").selectAll();
});