I made a flag and made my previous question deleted due to a misunderstanding.
I am working on a classic asp project.
let's say you have so many <script></script> tags in your code.
For instance:
line 10: <script> ..function 1 definition here..</script>
line 200: <script> .. function 2 definition here..</script>
line 5000: <script> ..function 3 definition here..</script>
also on line 6000: I have another tag that is trying to call function1.
maybe without using a * .js file?
For instance:
line 6000:
<script> function1(); </script>
These scripts are not defined in the <head> .
I know this is not useful, but I need to know if it has any way or not.
Hope it becomes clearer!
source share