In my tests, JavaScript's reload() function seems to prevent code that comes after it from executing... but can anybody confirm that this is true 100% of the time?

Assume the user has JavaScript enabled with no fancy tricks.

That is:

<head>
    <!-- Comes first in the <head>, and could be included via an external .js file. -->
    <script type="text/javascript">
        window.location.reload(true);
    </script>
    <!-- ... -->
</head>
<body>
    <!-- ... -->
    <!-- Later in the code.  This could be js, html... or anything else. -->
    <script type="text/javascript">
        alert('this should NEVER display... regardless of OS/browser');
    </script>
    <!-- ... -->
    <span class="you-cant-see-me">secret!</span>
    <!-- ... -->
</body>
link|improve this question

Although... this specific example seems to show the alert (but not the text) in IE... – Peter Dec 7 '11 at 6:30
1  
What seems to happen in above case is, even before the second script tag is parsed, the reload is happening. I tried reload() in a button click and wrote some code after that, and the code did execute. – Pawan Dec 7 '11 at 6:37
But why does the browser parse the second script tag? Shouldn't the browser immediately reload the page? – Peter Dec 7 '11 at 6:42
may be the browser treats both the script tags as one chunk of code and tries to execute everything until it is able to(as if the code is part of one function). If you have noticed as per your first comment, you will be able to see the alert but broswer wont wait till you click the ok button and page will reload. – Pawan Dec 7 '11 at 7:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.