Задача решена
$(function() {
$("input:text").keyup(function(){
var $value = $(this).val().toLowerCase();
var $length = $(this).val().length;
if($length > 0) {
$("p").each(function() {
var $text = $(this).text().toLowerCase();
if($text.indexOf($value) + 1) {
$(this).removeClass("no").show();
} else {
$(this).addClass("no");
}
});
$("p.no").hide();
} else {
$("p").show();
}
});
});