So I have html page called A.html it was called like this from B.html : A.html?varString=\"bla-bla-bla\" Is it correct for sending ar
A.html
B.html
A.html?varString=\"bla-bla-bla\"
Here is a function to parse the query string. Pass it the parameter name and it returns the value.
function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i