McKirahan wrote:
> Has anyone experienced this (and found a solution)?
>
> I have five files: a .htm that invokes four .js include files.
>
> Only the first alert in the first include is displayed.
>
> This only happens when I run on a client's corporate server.
>
> I have no problems on a laptop connected to the network
> or on my home PC. Any ideas? Thanks in advance.
>
>
> <html>
> <head>
> <title>test_js.htm</title>
> </head>
> <body>
> <script type="text/javascript" src="test_js.js"></script>
> <script type="text/javascript" src="test_js.js1"></script>
> <script type="text/javascript" src="test_js.js2"></script>
> <script type="text/javascript" src="test_js.js3"></script>
The server probably doesn't understand what .js1, .js2, and .js3 files
are. And rightly so, since those are non-standard file extensions.
Rename your files
test_js.js
test_js1.js
test_js2.js
test_js3.js
and correct the associated calls to them, and all should be fine.
HTH.
--
*** Remove the DELETE from my address to reply ***
================================================== ====
Kevin Scholl
http://www.ksscholl.com/
------------------------------------------------------
Information Architecture, Web Design and Development
------------------------------------------------------
We are the music makers, and we are the dreamers of
the dreams...
================================================== ====