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>