filtrenotes.js 368 B

12345678910111213
  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. })
  11. })
  12. }
  13. })(jQuery);