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
  • 11,768
  • 7
  • 68
  • 102
Nisha
  • 1
  • 1

1 Answers1

0
$(document).ready(function(){
    $('#includedContent').load("../Projects/menu.html", function() {
       //stuff
    });
});
Torxed
  • 22,866
  • 14
  • 82
  • 131
coolguy
  • 7,866
  • 9
  • 45
  • 71