I have the folloing in my source code for a twitter widget:
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 1,
interval: 30000,
width: 'auto',
height: 76,
theme: {
shell: {
background: '#ffffff',
color: '#000000'
},
tweets: {
background: '#fffcff',
color: '#140714',
links: '#07b6eb'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: false,
avatars: false,
behavior: 'all'
}
}).render().setUser('adventurehut').start();
</script>
However, IE gives me a “Object doesnt support this property or method” message and the tweet box remains empty.
Can anyone help please?