filtrenotes.js 434 B

1234567891011121314
  1. (function ($) {
  2. $.fn.filtreNote = function () {
  3. this.each(function() {
  4. //console.log("Test");
  5. $(this).change(function(e) {
  6. e.preventDefault();
  7. let value = $(this).val();
  8. let chemin = $(this).data('path');
  9. console.log(value);
  10. window.location.href = chemin + "?note=" + value;
  11. })
  12. })
  13. }
  14. })(jQuery);