Script for Twitter Widge


/ Published in: JavaScript
Save to your folder(s)

Script for twitter widget


Copy this code and paste it in your HTML
  1. <script src="http://widgets.twimg.com/j/2/widget.js"></script>
  2. <script>
  3. new TWTR.Widget({
  4. version: 2,
  5. type: 'profile',
  6. rpp: 4,
  7. interval: 30000,
  8. width: 'auto',
  9. height: 300,
  10. theme: {
  11. shell: {
  12. background: '#e6e6e6',
  13. color: '#000000'
  14. },
  15. tweets: {
  16. background: '#e0e0e0',
  17. color: '#000000',
  18. links: '#000000'
  19. }
  20. },
  21. features: {
  22. scrollbar: false,
  23. loop: false,
  24. live: false,
  25. hashtags: true,
  26. timestamp: true,
  27. avatars: false,
  28. behavior: 'all'
  29. }
  30. }).render().setUser('QuikQupon').start();
  31. </script>
  32. <hr class="clear">
  33. <h3>Advertise Here</h3>
  34. <hr class="clear">
  35. </div>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.