How do I include a file with JavaScript between <head>and </head>?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to use contents of one of my pages appears on top of every page.
I used included content page, from inserting the web component, but my page
does not appear. This page has a couple of JavaScript functions before the
body tag (between <head> and </head>. Is there anyway, either with include
content or other feature that I can include my page on every single page? (Of
course not by copying all codes)
 
FP2003 - use a Dynamic Web Template and attach to all pages.

Move the javascript to immediately after the <body> tag in the include
pages, if it will run from that position.

Otherwise - copy all the code to all pages. (The Javascript can be placed
in an external file, and a link of the form
<script type="text/javascript" src="myfile.js"></script> added to the head
section of every page.)
 
Back
Top