I have a form on my 404 page that is auto filled with the address the user tried to find. I also have javascript that then auto submits that form.

The problem is, once it auto submits it keeps looping and the page keeps reloading.

I am trying to wright the javascript code to fire once and then stop. The script fires on page load so that's whats causing the loop.

Outcome: I need it to fire on page load, page reloads, the code checks to see if its already reloaded once then stops.

For my test I am trying to make it pop an alert that says "I reloaded once" just so I know its worked.

This is my code so far

<script type="text/javascript">
window.onload = function() { 
var grabedurl = window.location.href
document.getElementById('badurl').value=grabedurl;
if( history.previous != history.current ){alert('I reloaded once')}
else
setTimeout("document.getElementById('errorsubmit').click()", 3000);}
</script>
link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

What you can do is add the state of the page already having been reloaded or not to the query string part of the URL. This should be done in your form's action, e.g. action="?submitted"

window.onload = function()
{ 
    var form = document.getElementById("aspnetForm");
    form.setAttribute("action", form.getAttribute("action") + "&submitted");
    var grabedurl = window.location.href;
    document.getElementById('badurl').value = grabedurl;
    if (/submitted/.test(window.location.search.substring(1)))
    {
        alert('I reloaded once');
    }
    else
    {
        setTimeout("document.getElementById('errorsubmit').click()", 3000);
    }
}

However, you might want to consider alternative approaches -- such as submitting the form via an XMLHttpRequest; having another, separate action page to submit the form to, or having the server log the request.

link|improve this answer
we are using a content management solution called Ektron. This means I can't alter the forms action or XML Http Request. :( – webmaster alex l Feb 8 '11 at 21:48
You could dynamically alter the form's action, but it won't be pretty (but, then again, it will still gracefully degrade since the form will no longer auto-submit). Do you have the id or the class of the form available? – rfw Feb 8 '11 at 21:50
I can check in a moment – webmaster alex l Feb 8 '11 at 22:00
<form name="aspnetForm" method="post" action="/Pagenotfound.aspx?aspxerrorpath=/this is a test/" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm"> – webmaster alex l Feb 8 '11 at 22:01
Does Pagenotfound.aspx have the same form? – rfw Feb 8 '11 at 22:02
show 16 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.