Hello
Sometimes, I don't know when exactly, when I try to include an external js file as:
<script src='myfile.js' ></script>
that .js file goes not included in some cases!!
To solve it, I had to use PHP as:
<script>
<? include ('myfile.js'); ?>
</script>
Anyone knows why that .js file is not being included all the time?
--
Elias
Sometimes, I don't know when exactly, when I try to include an external js file as:
<script src='myfile.js' ></script>
that .js file goes not included in some cases!!
To solve it, I had to use PHP as:
<script>
<? include ('myfile.js'); ?>
</script>
Anyone knows why that .js file is not being included all the time?
--
Elias
Comment