Quantcast
Channel: CodeBlog
Viewing all articles
Browse latest Browse all 19

HOW TO: The simplest way to show your tweets & RTs on any web page (JavaScript, no PHP)

$
0
0
Showing your latest tweets (& retweets) within your blog or site can be an intuitive way of getting people to follow you. The easiest way to do this is by retrieving your Twitter feed (in JSON format), reading your latest tweet(s) and adding them to the page. In this example, we’ll be starting with a blank HTML5 document like so: <!DOCTYPE html> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> </body> </html> Create the area within your page to show the tweet(s) You need to create a list node to display the tweet(s) somewhere on your page, this needs …

Viewing all articles
Browse latest Browse all 19

Trending Articles