10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-26 06:01:49 +02:00
QUESTDB_website/static/js/selectSelectAll.js

9 lines
241 B
JavaScript
Raw Normal View History

function selectSelectAll_click(e) {
2020-01-28 10:53:37 +01:00
const ctrl = $(e.target).next()
if (ctrl.prop('type') == 'select-multiple') {
ctrl.find("option").each(function () {
2020-01-29 17:36:50 +01:00
$(this).prop('selected', true);
2020-01-28 10:53:37 +01:00
ctrl.trigger("change")
});
}
}