mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
10 lines
331 B
JavaScript
10 lines
331 B
JavaScript
|
// reload image with id
|
||
|
function reloadImage(id) {
|
||
|
// we use a dummy query to trick the browser into reloading the image
|
||
|
var d = new Date();
|
||
|
var q = '?t=' + d.getTime();
|
||
|
var image = document.getElementById(id);
|
||
|
var url = image.getAttribute('src');
|
||
|
image.setAttribute('src', url.replace(/\?.*/,'') + q );
|
||
|
}
|