The document load repeats just about every second. I just want to refresh once.


<script>
        $.ajax({
            url: "",
            context: document.body,
            success: function (s, x) {
                $(this).html(s);

        }
    });
</script>

    So you load the page, which contains the script, which runs and reloads the same page, which contains the same script, which runs and reloads the page which contains the script which reloads the page which contains the script...

      Write a Reply...