If data is submitted via POST through the classic HTML form method is it possible to access those values using standard Javascript without libraries? How would this be done?
Edit for clarity: The variables have been posted. I am trying to access those values via javascript.
Thinking outside the box: (A hack that should never see the light of day)
For this example the posted variable is “a”:
document.URLreturns the url of the current site.val.searchreturns the position of the first occurrence of the regular expression inthe parameter field.
substringthe two and…thisposnow contains the posted variable.Brutal but functional. Is this too terrible to be an answer?