Good morning! I'm trying to make a Master Page in HTML 5. I created an HTML page called master.html with every menu structure I want. I call this page as follows on my index.php page and it works:
<html>
<body>
<div id="new-header">
<script>
$("#new-header").load("page/master.html");
</script>
</div>
<div>Index</div>
</body>
</html>
When I call this same structure on another page, profile.html for example, the master structure does not work! What am I doing wrong?