I am trying to load an external html file using JQuery. But, the following code does not work:
<!-- JQuery Code-->
<script>
$(document).ready(function(){
$("#div1").load("header.html");
});
</script>
</head>
<body>
<div id="div1"></div>
</body>