|
|
|
|
|
|
|
|
|
|
|
|
|
|
function filter_user(input){ |
|
|
function filter_user(input){ |
|
|
var value = $(input).attr('value'); |
|
|
var value = $(input).attr('value'); |
|
|
|
|
|
value = value.toLowerCase(); |
|
|
var selector = get_selector_for_filter_people(input); |
|
|
var selector = get_selector_for_filter_people(input); |
|
|
$.each( $(selector).find('div.peopleitem'), function(index, e){ |
|
|
$.each( $(selector).find('div.peopleitem'), function(index, e){ |
|
|
var html = $(e).find('div[name="title"] a').html(); |
|
|
var html = $(e).find('div[name="title"] a').html(); |
|
|
|
|
|
html = html.toLowerCase(); |
|
|
if (-1 != html.indexOf(value)){//we find it; |
|
|
if (-1 != html.indexOf(value)){//we find it; |
|
|
$(e).show(); |
|
|
$(e).show(); |
|
|
}else{ |
|
|
}else{ |