Forum Moderators: open
<div src="footerlinks.html" />
...and have it equivalent to placing footerlinks.html in there directly for SEO purposes, but meaning that you don't have to serve up the text every page load due to caching.
IFRAMES are a way around this but they are practically ignored for SEO purposes.
So, I am looking at javascript based methods. Probably combined with something server-side.
My current idea is that the first page-view should test for javascript, then if it is enabled - to implement <div src=""> in all future pages, using javascript to do the deed via a hidden IFRAME to load the document and then copy the innerHTML into the DIV.
Does anyone have any thoughts on this matter?