Answers for "prevent resubmition on page reload"

PHP
0

prevent resubmition on page reload

<script>
    if ( window.history.replaceState ) {
        window.history.replaceState( null, null, window.location.href );
    }
</script>
Posted by: Guest on January-05-2021

Code answers related to "prevent resubmition on page reload"

Browse Popular Code Answers by Language