I am creating a pure HTML website and in order to avoid the hassle of changing the menu, for example, on all the pages I've used something like
<div id='menu'></div>
<script>
$(document).ready( function() {
$('#menu').load('menu.htm #menu');
});
</script>
But I've seen the this procedure actually affects SEO (and can't create for example, sitemaps), as JS is not crawled, so I'm actually wondering if there is any other way to include the DIVs from another HTML file in multiple HTML files by using another procedure, like through PHP.
Thanks!