Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Bootstrap Multiselect | 3,559 | 82 | 21 | 9 months ago | 4 | August 01, 2021 | 290 | other | HTML | |
JQuery multiselect plugin based on Twitter Bootstrap. | ||||||||||
Wp Accesspress Twitter Feed | 1,111 | 6 years ago | 1 | PHP | ||||||
Wp Recent Tweet | 1,106 | 7 years ago | PHP | |||||||
Recent Tweets plugin for Wordpress | ||||||||||
Wp Dev Buddy | 1,104 | 7 years ago | 5 | PHP | ||||||
Wp Twitter Feeds | 1,101 | 7 years ago | PHP | |||||||
Tagmanager | 787 | 1 | 4 years ago | 1 | March 04, 2013 | 71 | mpl-2.0 | JavaScript | ||
A jQuery plugin (working nicely with twitter bootstrap) | ||||||||||
Scrolldeck.js | 689 | 7 years ago | February 22, 2021 | 19 | JavaScript | |||||
jQuery plugin for making scrolling presentation decks | ||||||||||
Threatingestor | 645 | a month ago | 10 | August 18, 2020 | 13 | gpl-2.0 | Python | |||
Extract and aggregate threat intelligence. | ||||||||||
Jquery Socialist | 632 | 7 years ago | 58 | mit | JavaScript | |||||
jquery social media plugin that aggregates and combines Facebook, Twitter, LinkedIn, YouTube, Instagram, Pinterest and.. Combine social feeds from multiple social networks or RSS in elegant layouts via this social plugin. | ||||||||||
Arkit_flutter_plugin | 588 | 4 | a year ago | 21 | October 16, 2021 | 35 | mit | Dart | ||
ARKit Flutter Plugin |
jQuery Tweetie - Simple Twitter Feed Plugin that works with new Twitter API.
Download the lastest version of jQuery Tweetie.
In order to successfully use jQuery Tweetie, you have to have server-side/backend API. The plugin comes with very simple PHP backend that you can easily setup and get going.
Initialize just like any other plugin.
$('.tweets').tweetie();
Property | Type | Description |
---|---|---|
url | String | Required. API URL. |
type | String | Required. Fetch tweets via hashtags, search terms, username and lists. Available options timeline, list, search and hashtag. |
template | String | Required. Template for each individual tweet. Learn more here. |
params | Object | Required. Parameters required to fetch collection of relevant tweets matching a specified query. Only timeline, list and search/hashtag params are accepted. |
dateFormat | String | Formating for created_at attribute. Learn more here. |
Tweetie uses curly brace templating syntax. You can access any tweet properties using the {{}}
double curly brase. For your convinece every link
, @username
and #hashtag
in the tweet body is automatically hyper-linked.
Example
{{tweet.text}} tweeted by {{tweet.user.screen_name}} at {{tweet.created_at}}
Format | Example | Description |
---|---|---|
%d |
1..31 |
Day of month |
%m |
1..12 |
Month number |
%B |
January..December |
Month name |
%b |
Jan..Dec |
Month name abbreviated |
%Y |
2018 |
4 digit year |
%y |
18 |
2 digit year |
Date format automatically applies to created_at
template attribute.