I usually include my script files like this:
<script type='text/javascript' src="app/scripts/my_script.js"></script>
which works fine
as everything lives in the myproject
folder. But now I have a file that lives outside, two levels above the project folder:
bigproject/
--projectjack/
--myproject/
--my_other_script.js
I tried including it like this
<script type='text/javascript' src="full/path/to/my_other_script.js"></script>
but it didn't find it as it goes through the myproject
folder. It looked it up here: myproject/full/path/to/my_other_script.js
How do I do this?
Thanks