import axios from "axios"; let pictureId = document.getElementById("CatGirlPicture"); pictureId.onclick = function() { axios.get(location.protocol + "//" + location.host + "/rand").then(function (response) { console.log(response.data) document.getElementById("CatGirlPicture").setAttribute("src", response.data); }); }