‹‹ jQuery StuffjQuery Twitter Search Plugin - Filter Example

This example shows how to search the public timeline and filter the results. In this case I'm searching for the term 'malsup' and filtering the results down to tweets sent by 'malsup'. You can filter on whatever criteria you want if you know the Twitter search json format.

$('#twitter1').twitterSearch({
	term: 'malsup',
	filter: function(tweet) {
		return tweet.from_user == this.term;
	}
});