Journalism won’t die if you donate. Support Voice of San Diego today!
Scott Lewis on Twitter
// Basic usage $('#twitterUserTimeline').liveTwitter('vosdscott', {limit: 3, refresh: true, mode: 'user_timeline'});
// Changing the query $('#searchLinks a').each(function(){ var query = $(this).text(); $(this).click(function(){ // Update the search $('#twitterSearch').liveTwitter(query); // Update the header $('#searchTerm').text(query); return false; }); });