Image

Javascript and Form Data

Is there away to retrieve the GET data of a form/url with Javascript?

URL = ... somewebsite.com/apply/index.html?promo=CLP32005

document.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],"","");