Hi Arne-
I work on a site that receives a significant amount of traffic, and we host a twitter widget on the page. at times, we are seeing the control render with no tweets contained in it. the script is as follows below. because this is anonymous usage, is there anything we can do to address this? it occurs on our internal network (we’re receiving reports of no tweets displaying) but we’re also concerned about other users of the site on their internal networks experiencing the same thing. any insight would be appreciated. thanks!
jQuery(document).ready(function($) {
$.getScript('http://widgets.twimg.com/j/2/widget.js', function() {
var oTweet = new TWTR.Widget({
id: 'tw-inner',
version: 2,
type: 'list',
rpp: 30,
interval: 30000,
title: '',
subject: 'Selected Trading Tweets',
width: 350,
height: 300,
theme: {
shell: {
background: '#c88c50',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#004176'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'all'
}
}).render().setList('Marketwatch', 'trading-deck').start();
});
});