If i have a javascript src like
<script src="http://domain.com/js/script.js">
Could i add some more values to the end of it
<script src="http://domain.com/js/script.js?state=1">
And get state inside that javascript ??
This idea came from a situation that i have to get client resolution and save it to a session but i can not take it by php , so i have to get it by javascript, but i dont want to show the script nuded from the source code
I think it is possible because i saw many of sources do have link like this!