Forum Moderators: open
All the ones I've seen seem to be trapped within javascript that search engines don't read, but this scroller has a lot of content and links that would be useful to the engines.
Any help much appreciated.
An example of what I'm after is something like this: [dynamicdrive.com...]
Not too bothered about the pausing.
[edited by: Adam_C at 9:39 am (utc) on April 9, 2003]
HTH,
JP
But I think I've found something that will do the job at [simplythebest.net...]
You could bring the text in from an element outside of the <script> area using the DOM....
kind of:
<html>
<body>
<div id='st' style='visibility:hidden'>THIS IS SOME TEXT</div>
<script type='text/javascript'>
alert(document.getElementById("st").innerHTML);
</script>
</body>
</html>
Just be careful that however you hide the text in the body that is to be used in the JavaScript doesn't get you penalised for spamming.
(Sacrilege, I know. I'm bound to get told off for that...)
Shawn