Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

twitter api


jtwt - a free twitter jquery plugin

jtwt is a simple jQuery plugin that allows you to communicate with the Twitter JSON API. Actually you can read and display the user timeline of a twitter account with a few lines of code.

Features:

  1. reads and displays the usertimline with the related avatar. Uses the JSON-API of twitter.com
  2. easy to customize with CSS
  3. converts #hashtags into full workable links
  4. converts @username in full workable links
  5. converts tweeted links in full workable links
  6. a lot of customizable options. easy to use!
  7. full detailed documentation included


Feel free to use it in your commercial and private projects.

Share your experience with us: jtwt on GitHub

jQuery Tweets

Simple plugin to show tweets from Twitter in your web site.

Twitter Mentions

Add an un-orderer list to our site listing what the people say about one or more @users

Download at http://infectedfx.net/download/jquery.twitter.mention.zip

Realtime Related Tweets Bar

With all the buzz lately about Twitter real-time search. Why don't you add a real-time tweets bar related to your posts from your twitter timeline or from anybody or even limit it by a geocode coordinates.

This is a highly customizable real-time Twitter search-driven bar of tweets related to your post.

Features
1. Show realtime related tweets based on your post tags.
2. Show your twitter timeline; related to your post or not.
3. Return only tweets with links or return all.
4. Limit tweets by 1 or more users. (from/to/mention users!)
5. Limit tweets by a location geocode and a radius.
6. Search by tags in Or-ing or And-ing mode.
7. Many tweets transition options like opacity, height, font-size.
8. Each part of the tweet like Avatar, links, Hashtags.. has its own class so you can customize its style.
9. Show or hide some parts of the tweet like avatar, author name, date.
10. Use a typical JS call or auto-load div elements that have "related-tweets" class.

jTweetr

jTweetr is a Semantic, and Accessible Twitter Search API Widget.

jQuery Twitter API

jQuery Twitter API aims to give to Web developers the ability to request Twitter public informations from a simple JavaScript function call.

LiveTwitter

LiveTwitter is a lightweight, live updating Twitter search plugin for jQuery.

See http://github.com/elektronaut/jquery.livetwitter for documentation.

Twitter API - jTwitter

UPDATE: Fixed small bugs and added demo page for jQuery Twitter plugin.

UPDATE: Added in version 1.1.0 an ability to specify and load any given number of twitter user posts. For more details see here.

Plugin provides you with an easy Twitter API to access Twitter user information by twitter username.

Here is an exaple usage:

// I am query data for "jQueryHowto" user
$.jTwitter('jQueryHowto', function(posts){

  //Callback functn with the user data
  $('#profile input.url').val(posts[0].user.url);

  $('#profile #avatar').html('<img src="'
       + posts[0].user.profile_image_url + '" />');
});