I have some javascript menu code that works just fine from a separate directory. But, when I try to call the same .js files from within the same directory, it won't see the files.
The following works from another directory:
script type="text/javascript"> var vbImgPath="../00-Menu-Files/"
But, if I do this from within the same folder, how would I do it?
THE SOLUTION (edited this in after much experimentation):
I experimented A LOT!!! There is only ONE solution that ultimately worked:
"../00-Menu-Files/"
The SAME thing as from the other directory! Pretty strange that there is no other way to call this from within its own directory. But I cannot find another alternative that actually works.