I have followed the above example and although my page opens up and displays the both times, my Ajax time (with yellow background) does not updates asynchronously. I copied the relevant code from the book in my code and here for reference:
Code:
<script type=âtext/javascriptâ>
$(function(){
$.ajaxSetup ({
cache: false
});
setInterval(function() {
$(âspanâ).load(âGetTime/â);
}, 1000);
});
</script>
Has anyone had the similar problem as I couldn't find the relevant thread on this site. Thank you.