Hello,
Our company has split our web pages into two include files. A header and footer include files. Because of this I no longer have "access" to the <HEAD> tags to place my javascript code.
I was wondering if my js code should go above the ssi or below it? Or does it really matter?
above:
<script src="jsfunctions.js">
<!-- #include virtual="header.inc" -->
main body here
<!-- #include virtual="foot.inc" -->
below:
<!-- #include virtual="header.inc" -->
<script src="jsfunctions.js">
main body here
<!-- #include virtual="foot.inc" -->
TIA!!!
Our company has split our web pages into two include files. A header and footer include files. Because of this I no longer have "access" to the <HEAD> tags to place my javascript code.
I was wondering if my js code should go above the ssi or below it? Or does it really matter?
above:
<script src="jsfunctions.js">
<!-- #include virtual="header.inc" -->
main body here
<!-- #include virtual="foot.inc" -->
below:
<!-- #include virtual="header.inc" -->
<script src="jsfunctions.js">
main body here
<!-- #include virtual="foot.inc" -->
TIA!!!