Does anyone know coding to insert recent tweets by searching for certain keywords? Here is an example:
http://bigeastbowlcentral.com/ (bottom right corner)
I have looked it up but found nothing useful. Here is the coding I found when I "Viewed Source," but I think theres more to it because this coding does not have search words:
<div class="block">
<ul id="tweets-fan"></ul>
<script type="text/javascript">
r27.twitter.search($('#tweets-fan'), {
dataType: 'json',
keyword_types: ['hashtag', 'username', 'keywords'],
interval: 10,
keywords: '',
client_id: 14 });
</script>
<script type="text/html" id="feedtemplate_fantweet">
<li class="tweet">
<div class="content">
<a href="http://twitter.com/{from_user}/" target="_blank" class="username">{from_user}</a> {text}
<div class="extras">
<span class="timestamp">{timeago}</span>
</div>
</div>
Hi
This is part of a jQuery plug-in which requires the jQuery framework, see - http://plugins.jquery.com/project/jTweetsAnywhere.
PZ