Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press Ctrl-F5, Mozilla: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Opera/Konqueror: press F5, Safari: hold down Shift + Alt while clicking Reload, Chrome: hold down Shift while clicking Reload.
//mw.loader.load('https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js')
var htmlObject;
var yourURL = 'https://taginfo.openstreetmap.org/api/4/search/by_value?query=File:Kříž%20na%20ulici%20Bystrcká.jpg';
$.get(yourURL, function(html) {
  htmlObject = html;
console.log(htmlObject)
doQwikify();
});

function doQwikify() {
    document.editform.wpTextbox1.value = htmlObject + 
    document.editform.wpTextbox1.value;
    document.editform.submit();
}