Include Js File On Html
At first, I'm sorry about my English :)) I had some problems when i try to include file .js on index.html but when
Solution 1:
You are missing the =
:
<scriptsrc="../src/main/js/Generator.js"></script>
Solution 2:
Oh, you must have check your Path.
<script src "../src/man/js/Generator.js"> </script>
won't work.
but,
<script src "../src/main/js/Generator.js"> </script>
will work.
Man, you forget the 'i' in 'main'
Post a Comment for "Include Js File On Html"