I want an internal website to refresh itself ONCE when loaded. The reason is that there are images that are updated, but have the same name. So when I open the website, the old image is shown (from the cache I guess).
The answers I found either didn't work or I didn't know how to implement them, so I'm looking for the simplest answer possible!
This didn't work: (or, weirdly worked a couple of times but not anymore?!)
<html>
<head>
<meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
<script language=" JavaScript"><!--
function MyReload()
{
window.location.reload();
}
//--></script>
<title>TITLE</title>
</head>
<body ...
...
<hr style="width: 100%; height: 1px;"><img
style="width: 2120px; height: 1171px;" alt="SFD"
src="image.jpg"><br>
</body>
</html>