filtre.js 786 B

12345678910111213141516171819202122232425
  1. (function ($) {
  2. $.fn.filtre = function () {
  3. let value = $(this).val().toLowerCase();
  4. let target = $(this).data('target');
  5. $(target + " tr").filter(function () {
  6. $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
  7. });
  8. };
  9. }) (jQuery);
  10. (function ($) {
  11. $.fn.filtreParNote = function () {
  12. this.each(function() {
  13. $(this).val("0");
  14. $(this).change(function(e) {
  15. let value = $(this).val();
  16. let target = $(this).data('path');
  17. console.log(value);
  18. $(target + " tr").filter(function () {
  19. $(this).toggle($("td input.rating", this).val() >= value);
  20. });
  21. });
  22. });
  23. }
  24. }) (jQuery);