<html>
<head>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
</head>
<body>
<div id="div1">
</div>
</body>
<script type="text/javascript">
$(document).ready(function () {
var interval = setInterval(callAjax, 10);
function callAjax() {
$.ajax({url: "http://www.delveaxis.com/", success: function (result) {
// $("#div1").html(result);
}});
}
});
</script>
</html>