I am using jTweetsAnywhere (http://thomasbillenstein.com/jTweetsAnywhere/#jta_usage) and need to filter the tweets to exclude certain tweets with words. I have this but it isn’t working and there is no examples of how to set this up.
$('#Tweets').jTweetsAnywhere({
searchParams: ['q=sliderobes'],
TweetFilter: ['kids'],
count: 3,
showTweetFeed: {
showProfileImages: true,
showUserScreenNames: false
}
})
Thanks for any help,
C
It’s lower-case t
tweetFilterand it’s a function that acceptstweet– a JSON tweet object straight from the twitter API – andoptions, the plugin options object. For example