Get the query string on the called javascript file
I could get src with below code. So I think that you can parse queryString.
document.currentScript.src
You may append id attribute to script tag like this:
<script src="/file.js?query=string" id="query"></script>
and then call it:
console.log(document.getElementById("query").src.split("query=")[1]);
A small working sample code is below:
<html>
<head>
<script src="aaa.js?query=abcd" id="query"></script>
</head>
<body></body>
</html>
Here is the code inside of aaa.js:
window.onload=function(){
alert(document.getElementById("query").src.split("query=")[1]);
}