Skip to content

Instantly share code, notes, and snippets.

@imamhidayat92
Last active August 29, 2015 13:56
Show Gist options
  • Save imamhidayat92/8850157 to your computer and use it in GitHub Desktop.
Save imamhidayat92/8850157 to your computer and use it in GitHub Desktop.
Mor(e)nite Tweet Feeder Client implemented using Javascript with jQuery.
(function( $ ) {
$.fn.feed = function(args) {
var URL = "http://apps.morenite.com/tweet-feeder/index.php?user=" + args.user + "&action=" + args.action;
$.getJSON(URL, function(data) {
});
}
}( jQuery ));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment