I have a web page that monitors a process and refreshes every ten seconds. To do this I simply have a statement in the <Head>
section of the HTML: <meta http-equiv="refresh" content="10">
This works fine, but...
I have a button on the page that allows for a remote reset of the system. In order to confirm this action, I have a modal page that pops up asking the user to confirm. However, if the original page has been displayed for, say, nine seconds, the modal page shows for only one second before being refreshed and disappearing!
Is there a simple way that I can disable the page refresh while the modal page is displayed, and then restart it once the confirmation has been given?