I have a very large cascading menu system with over 300 items. (I know this is big, but it's a requirement.)
It is currently written in javascript, so the external file is cached by browsers.
To improve search engine results, I need to convert this to css menu system.
I understand that browsers will also cache external stylesheets, but
- Is there a way to cache menu contents (
<ul>and tags <li>)?
If I use javascript ( document.write) to write content, I could have this in an external javascript file that will be cached locally, but
- will it be a search engine friendly?
What is the best solution?
source
share