make filter more responsive
This commit is contained in:
parent
cd295a2511
commit
29b83dd080
|
@ -7,7 +7,7 @@
|
||||||
{% block head %}
|
{% block head %}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function() {
|
$(function() {
|
||||||
$('#searchFilter').change(function() {
|
$('#searchFilter').keypress(function() {
|
||||||
var val = $(this).val().toLowerCase();
|
var val = $(this).val().toLowerCase();
|
||||||
$('.listItem').each(function() {
|
$('.listItem').each(function() {
|
||||||
var txt = $(this).text().toLowerCase();
|
var txt = $(this).text().toLowerCase();
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
{% block head %}
|
{% block head %}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function() {
|
$(function() {
|
||||||
$('#searchFilter').change(function() {
|
$('#searchFilter').keypress(function() {
|
||||||
var val = $(this).val().toLowerCase();
|
var val = $(this).val().toLowerCase();
|
||||||
$('.listItem').each(function() {
|
$('.listItem').each(function() {
|
||||||
var txt = $(this).text().toLowerCase();
|
var txt = $(this).text().toLowerCase();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user