Hi, I'm trying to find the best way to display links for search engines and people with javascript disabled without messing the ajax requests up
option 1
option 2
(this way works well enough but keeps the test.html in the status bar)
option 3
maybe you know a better way ?
Thanks.
option 1
Code:
<div id="links">
<a href="test.html">test</a>
</div>
<script type="text/javascript">
document.getElementById('links').innerHTML='<span onclick="ajaxCall(\'test.html\')" class="linkcss">test</a>';
</script>
option 2
Code:
<div id="links">
<a href="test.html" onclick="ajaxCall('test.html');return false;">test</a>
</div>
option 3
maybe you know a better way ?
Thanks.