This would allow non-javascript users to at least see the page:
Code:
<nav id="firstNav">
<ul>
<li><a href="page1.html" onclick="ajaxpage(this.href,'main'); loadobjs('styles/stylesheet.css'); return false;">ABOUT</a></li>
</ul>
</nav>
Or you could use a targeted iframe:
Code:
<nav id="firstNav">
<ul>
<li><a href="page1.html" onclick="ajaxpage(this.href,'main'); loadobjs('styles/stylesheet.css'); return false;" target="theiframe">ABOUT</a></li>
</ul>
</nav>
Then in the main div have:
Code:
<div id="main">
<noscript>
<iframe name="theiframe" src="about:blank" width="100%" height="500" scrolling="auto" frameborder="0"></iframe>
</noscript>
</div>
Then it would be almost the same for non-javascript users.
Bookmarks