Files
UntappedWidget/src/UntappedWidgetGenerator.Web/Scripts/Jquery.Untapped.js
Tommy Parnell 086bd4d8ac use prod url
2015-03-19 00:25:09 -04:00

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);