window.onload = function() {
const image = document.getElementById("img");
function updateImage() {
image.src = image.src.split("?")[0] + "?" + new Date().getTime();
}
setInterval(updateImage, 1000);
}
<img src="<image.jpg>" id="img" />
const isMobileDevice = /Mobi/i.test(window.navigator.userAgent);
if (!/https/.test(window.location.protocol)) {
window.location.href = window.location.href.replace("http:", "https:");
}