0
<script src="jquery.js"></script>
<script>
    function loadContent() {
        $("#includedContent").load("../Projects/menu.html"); //  Not working
    }    
</script> 

<div id="includedContent"></div>

<script>
    loadContent()
</script> 
Bouke
  • 10,025
  • 6
  • 49
  • 88
Nisha
  • 1
  • 1

1 Answers1

0
$(document).ready(function(){
    $('#includedContent').load("../Projects/menu.html", function() {
       //stuff
    });
});
Torxed
  • 19,906
  • 13
  • 73
  • 114
coolguy
  • 7,608
  • 9
  • 41
  • 70