Actually, I have already asked this question here: jQuery simple Data Pass HTML
I have 1/2 achieved my goal,
I am using window.location.href to pass the variable “VISITORNAME”
the Url looks http://myurl/sent#someone@email.com (VISITORNAME)
then I used window.location.href.replace to get someone@email.com (VISITORNAME)
how possible to make url like static, just like http://myurl/sent but still passing the value to another page.
Instead of GET you can use POST to pass the parameters..
By doing so the parameters will not be reflected in the url..
Try this approach