I've got input field which allows to search for values inside div blocks. For now, I'm using following construction:
var $this = $('.multiple-selector-wrapper');
$('.ms-search').keyup(function(event){
var value = $(this).val();
$this.find('.multiple-selector-table-row').hide();
$this.find('.ms-column:contains("' + value + '")').parents('.multiple-selector-table-row').show();
});
Problem is, search will always perform strict value case. Is it possible to ignore case for search?
JSFiddle is here: http://jsfiddle.net/ZV6e5/1/