I would like to know how to implement a "ctrl+f5" command into my HTML page. I can use javascript or html.
It should be run only when people click in a link.
Thanks, Alex
You should be able to use this javascript to suite your need:
onClick="window.location.reload(true)"
window.location.reload(true)
has been deprecated. You can use:
window.location.href = window.location.href
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With