Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to do auto reload in my page
    text
    copied!<p>How can I make this possible? I want to auto refresh my page after the history.go. I post my whole html </p> <pre><code>&lt;%@page contentType="text/html" pageEncoding="UTF-8"%&gt; &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;link rel="stylesheet" type="text/css" href="css/styles.css"/&gt; &lt;link rel="shortcut icon" href="img/favicon.png" type="image/png"&gt; &lt;script src="//cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js"&gt;&lt;/script&gt; &lt;script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.0/jquery.min.js"&gt;&lt;/script&gt; &lt;script src="https://raw.github.com/andris9/jStorage/master/jstorage.js"&gt;&lt;/script&gt; &lt;script&gt; $.jStorage.set("reload", true); if ($.jStorage.get("reload") === true) { $.jStorage.set("reload", false); window.location.reload() } &lt;/script&gt; &lt;script&gt; function goBack(){ window.history.go(-2); } &lt;/script&gt; &lt;title&gt;Edit Success&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;div id="content"&gt; &lt;div class="md-modal md-show" id="modal-1"&gt; &lt;div id="notifMessage"&gt; &lt;h1&gt;The information have been updated.&lt;/h1&gt; &lt;p&gt;&lt;a onclick='goBack();'&gt;View Patients&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p></p> <hr> <p>I edited it with my whole html and replaced what u post but still not working or maybe i'm wrong in implementing it</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload