Twitter profile widget -


i'm using twitter profile widget on website.i changed settings want,got code twitter site. https://twitter.com/about/resources/widgets/widget_profile

the problem widget ,each time want me refresh page see tweets.

i want load tweets out refreshing page. there way,i implement on widget.

<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script> <script> new twtr.widget({   version: 2,   type: 'profile',   rpp: 4,   interval: 30000,   width: 250,   height: 300,   theme: {     shell: {       background: '#333333',       color: '#ffffff'     },     tweets: {       background: '#000000',       color: '#ffffff',       links: '#4aed05'     }   },   features: {     scrollbar: false,     loop: false,     live: false,     behavior: 'all'   } }).render().setuser('twitter').start(); </script> 

thanks in advance!

you can force widget load new tweets live parameter set true. change in script or grab new 1 @ https://twitter.com/about/resources/widgets/widget_profile , make sure check poll new results? in settings tab.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -