On 8/1/07, Pierre Goupil <[EMAIL PROTECTED]> wrote: > I have a very simple question to ask : how do I include a JavaScript file in > a Struts JSP ? I mean : I know how to include it from the Web but I would > like to download it and include it from my hard disk
> But unfortunately, if I put a direct link to my hard disk, it displays it, > instead of just including it into my page for me to be able to call it. The > same applies if the script directive is in the head of my document, FYI. If I understand your use case, not guaranteed :-), something like this using JSTL would probably be your best bet. <script type="text/javascript"> <c:import url="file:/home/example/snippet.js"/> </script> Depending on what you're trying to do with the JS, you might run into some cross-site-scripting problems... FWIW! -- Hassan Schroeder ------------------------ [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]