Suppose I am loading a JavaScript file like this:
<script type="text/javascript" src="http://foo.com/script.js?id=120#foo"></script>
Is it possible to read GET or hash parameter passing through this?
I am currently doing this using PHP (with headers) like:
<script type="text/javascript" src="http://foo.com/script.php?id=120"></script>