I am trying to get into jquery/ajax and I can\'t even believe I can\'t get past this first test. I\'m following an example I found at The Jquery API site and I followed it j
Try launching chrome / chromium with --allow-file-access-from-files
flag set
See How do I make the Google Chrome flag "--allow-file-access-from-files" permanent?
Try
<script>
$(function(){
$("#stage").load("list1.html");
});
</script>
If still not works, check the Network section in the Developer Tools of your browser and see if there are any HTTP or Security errors.