You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
439 B

$(function() {
$(".json-response").each(function(idx, el) {
$.getJSON(el.dataset.url, function(data) {
el.innerHTML = "<code>" + JSON.stringify(data) + "</code>";
});
});
$("#show-svg").click(function() {
$("#badges-json").hide();
$("#badges-svg").show();
})
$("#show-json").click(function() {
$("#badges-svg").hide();
$("#badges-json").show();
})
});