On the HTML page, I have a link to an external Javascript file, for example:
<script src="http://MyServer.com/js/myscript.js?Happy=True"></script>
Inside myscript.js , when it starts, can I get the Happy = True part similar to the QueryString js source url?
Note. I don't want the url of the HTML page, I need to get the url of the js file.
My guess is no.
source
share