Как я могу сделать этот код для фильтрации с диакритическими знаками и без? У меня есть этот ввод:
<input class="filter form-control" id="filter" placeholder="Cauta un produs"/>
И у меня есть этот сценарий:
$(".filter").on("keyup", function() {
var input = $(this).val().toUpperCase();
$(".col").each(function() {
if ($(this).data("string").toUpperCase().indexOf(input) < 0) {
$(this).hide();
} else {
$(this).show();
}
})
});
Спасибо!