| How to use the scripts on your homepage:
Download the zip archives on the example pages. After extracting the zip archives just copy the gif files and the included *.js file (it includes the javascript) to the folder where you have stored your HTML webpages (computer or webserver), then include the following row in the HTML code of the page where you want display the DHTML cursor effect:
<SCRIPT LANGUAGE="javascript1.2" SRC="scriptname.js"></SCRIPT>
in the code replace scriptname.js by the real name of the script
It will start the script when someone visits your page ...
The row must be included somewhere between the Head tags of your page, you can see an example below:
<HTML> <HEAD> <TITLE>name of your page</TITLE>
<SCRIPTLANGUAGE="javascript1.2" SRC="scriptname.js"></SCRIPT>
</HEAD>
<BODY>
...
</BODY>
</HTML>
in the code replace scriptname.js by the real name of the script
Hint: some server providers don't allow *.js files on their servers and in that case the script doesn't work even if you have uploaded it to your webspace and everything seems OK so far.
|