blob: 83a1c5a9f4c1e72d60f98f0b75feafe2b0d247f3 (
plain) (
tree)
|
|
jQuery(function ($) {
$("*[data-webmention-count]").each(function (i, e) {
$.getJSON(
"https://webmention.io/api/count",
{
target: $(e).data("url"),
},
function (data) {
$(e).text(data.count + " mentions");
}
);
});
});
|