ynh_extension_meeo/javascripts/edu_controle_filter.js
2024-07-20 20:03:52 +02:00

9 lines
No EOL
288 B
JavaScript

$(document).ready(function(){
$("#classe").on("change", function() {
var value = $(this).val().toLowerCase();
$("#eleves div.form-group").filter(function() {
var text = $(this).attr('classe').toLowerCase();
$(this).toggle(text.indexOf(value) > -1);
});
});
});