Flow:
- window.sessionStorage['submit'] is initially an empty string.
- once you type something in the textbox, and click the submit button, the value in the textbox is saved to window.sessionStorage['submit'].
That means the window.sessionStorage['submit'] is not empty anymore. it containes a value.
- the page refreshes after you submit the form.
- the onload function will check if there is anything in window.sessionStorage['submit']. if its not empty it means that the form was submitted by a user.
then it reset the window.sessionStorage['submit'] to empty string again.
Its using Session Storage which is supported in all the major browsers.
<html>
<body onload="checkSubmitStatus()">
<form name="text" action="">
<input type="text" id="txtId">
<input type="submit" value="submit" onclick="storeInSession()"/>
</form>
<script type="text/javascript">
function storeInSession(){
window.sessionStorage['submit'] = document.getElementById('txtId').value;
}
function checkSubmitStatus(){
if(window.sessionStorage['submit']){
alert('The form was submitted by '+ window.sessionStorage['submit']);
window.sessionStorage['submit'] = '';
}
}
</script>
</body>
submit(), submit the form yourself (using ajax) and then run what you wanted to execute after form submission – HungryCoder Nov 15 '12 at 8:34