I\'m trying to use an external JavaScript file in order to write \"Hello World\" into a HTML page.
However for some reason it does not work, I tried the same functio
Script tags with SRC values do not run the contents. Split it to two script tags. One for the include, one for the function call. And make sure the include is before the call.