tags:

views:

63

answers:

2

I wan't to know How to send data using GET to Java Script like from

link: C:/folder/test.html?x=1

<script>
//when page accessed
//access x data sent in from the link
</script>

Note, this is for client page not server!

+1  A: 

Is this what you are looking for?

Tommy
A: 

You need to parse location.search. A simple implementation would be:

var matches = null;
var params = {}, raw_params = location.search.substring(1).split('&');
for (i in raw_params)
{
    matches = raw_params[i].match (/^([^=]+)=(.+)$/);
    if (matches) params[matches[1]] = matches[2];
}
K Prime