Page Refresh
by LW
HTML
<table style="width: 100%">
<tr>
<td>Filename.jpg</td>
<td>File Description</td>
<td id="datenow"></td>
<td><a class="button downloadBtn" href="/download/83074" onclick="refresh()" download>Download Link</a></td>
<td><button type="button downloadBtn" value="New Download" href="#" onclick="refresh()">Download Button</button></td>
</tr>
</table>
JavaScript
document.getElementById("datenow").innerHTML = Date();
function refresh() {
setTimeout(function () {
location.reload(true);
}, 100);
}
alert("page refresh");
// not working