A tiny jQuery plugin to tweet highlighted texts
Highlight something in the following text to see this plugin in action.
Give your readers the ability to tweet anything in your blog or webpage. When some text is selected, the Tweet it button displays. Clicking on this button allows them to post the selected text in Twitter. You can add your webpage and hashtags to be pusblished with their tweets. Nice eh?
Copy the libraries to your project.
Include the library in the header of your html file:
...
...
...
Decorate your DOM with some class that you can select for your plugin:
Some awesome text.
Initiate your plugin:
$('.tweet-it').tweetit();
Example:
$('.tweet-it').tweetit( {
url : 'example.com',
via : 'username',
hashtags : 'jquery, plugin' } );
You may know that Twitter posts are restricted to 140 characters, including the url, via and hashtag paramters. Tweetit.js will include your parameters and restrict the actual text to comply with that restriction.