How do you embed Twitter updates on your website?
Start by going to http://www.tweetizen.com
The below was the OLD way to do it:
<a href="http://twitter.com/YOURUSERNAME">My Twitter Updates</a>
<script type="text/javascript">
function relative_time(time_value) {
var values = time_value.split(" ");
time_value = values[1] + " " + values[2] + ", " + values[5] + " " + values[3];
var parsed_date = Date.parse(time_value);
var relative_to = (arguments.length > 1) ? arguments[1] : new Date();
var delta = parseInt((relative_to.getTime() - parsed_date) / 1000);
delta = delta + (relative_to.getTimezoneOffset() * 60);
if (delta < 60) { return 'less than a minute ago'; } else if(delta < 120) { return 'about a minute ago'; } else if(delta < (45*60)) { return (parseInt(delta / 60)).toString() + ' minutes ago'; } else if(delta < (90*60)) { return 'about an hour ago'; } else if(delta < (24*60*60)) { return 'about ' + (parseInt(delta / 3600)).toString() + ' hours ago'; } else if(delta < (48*60*60)) { return '1 day ago'; } else { return (parseInt(delta / 86400)).toString() + ' days ago'; } }
function twitterCallback(obj) {
var id = obj[0].user.id;
document.getElementById('my_twitter_status').innerHTML = obj[0].text;
document.getElementById('my_twitter_status_time').innerHTML = relative_time(obj[0].created_at);
}
</script>
<span id="my_twitter_status"></span>
<span id="my_twitter_status_time"></span>
<script type="text/javascript" src="http://www.twitter.com/statuses/user_timeline/YOURUSERNAME.json?callback=twitterCallback&count=1"></script>
Can you answer these Computers questions?
- Get notified about updated answers
- Follow your favorite categories
- Get credit for your contributions
- Customize your profile
- Answer questions more easily
Click here to connect your accounts.
If you don't want to connect accounts, you can start a new one from scratch.
Your email address will not be used for any other purpose without your permission.
If you don't connect accounts, your new account will be starting from scratch.
Home
- Animal Life
- Business & Finance
- Cars & Vehicles
- Entertainment & Arts
- Food & Cooking
- Health
- History, Politics & Society
- Hobbies & Collectibles
- Home & Garden
- Humor & Amusement
- Jobs & Education
- Law & Legal Issues
- Literature & Language
- Relationships
- Religion & Spirituality
- Science
- Shopping
- Sports
- Technology
- Travel & Places
- WikiAnswers Local

