Hi,
This may seem like a silly question, but consider the following use of the 'script' element to import an external javascript file:
<script src="http://localhost:8085/myscript.js" type="text/javascript" >
Given that this is a url and not a file path, would this be evaluated server side or client side?
If evaluated client side, then it would fail as the script resides on the server, not the 'localhost' of the client?
Thanks.