Javascript and Form Data
Is there away to retrieve the GET data of a form/url with Javascript?
URL =
We would like to write the GET data to a cookie once they arrive.
[SOLUTION]
... somewebsite.com/apply/index.html?promo=C LP32005document.referrer ignores the GET data.We would like to write the GET data to a cookie once they arrive.
[SOLUTION]
document.referrer;
var GETdata = location.search;
GETdata = GETdata.split("=");
setCookie("promo",GETdata[1],"",""); 