10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-04 02:16:11 +02:00
QUESTDB_website/static/js/selectSelectAll.js

12 lines
308 B
JavaScript

function selectSelectAll_click(e) {
const ctrl = $(e.target).next()
selectSelectAll(ctrl)
}
function selectSelectAll(target) {
if (target.prop('type') == 'select-multiple') {
target.find("option").each(function () {
$(this).prop('selected', true);
target.trigger("change")
});
}
}