11 lines
324 B
JavaScript
11 lines
324 B
JavaScript
(function ($) {
|
|
$.fn.untappd = function (username) {
|
|
this.each(function () {
|
|
var that = this;
|
|
$.post("http://untappedwidget.azurewebsites.net/" + username)
|
|
.success(function (data) {
|
|
$(that).html(data);
|
|
});
|
|
});
|
|
};
|
|
})(jQuery); |