$(document).on("click", "a", function(e){
 e.preventDefault();
});
alert("hello");
$("a[href$=.ogg]").each((index, it)=>{
mw.Api({
action="query",
title=$(it).html(),
prop="imageinfo",
iiprop="url",
format="json"
}).done((res)=>{
for(var it of res.query.pages){
    console.log(it.imageinfo[0].url);
}

});
});