PDA

View Full Version : CSS-JavaScript question


Greg
01-25-2003, 12:38 PM
If I have a JavaScript that is used in 5 pages, can I place that
script in a CSS page that will be inserted into those 5 pages and
if so how do I place the script in the CSS page and call it into the
pages?

Telebrett
01-25-2003, 04:20 PM
you can place the link to a javascript .js file in similar fashion to a css page in your html document.

by doing

<SCRIPT SRC="javafile.js">

Greg
01-26-2003, 08:49 AM
Thanks Telebrett