W
William Gill
I have not worked with JavaScript for several years, so forgive me if I
get some terminology slightly askew, but is there a way to view what the
HTML specification calls the "form data set" used in a GET or the
"post message" prior to transmission to the server?
I know I can read each input.value attribute to see what they contain,
but the browser is "compiling" this information to append to the URI in
a GET, or to populate the post message in a POST. I would like to be
able to examine that formatted data in the client (browser) via JS prior
to submission. Does anyone know if this is contained in an object
somewhere, or does each browser read and encode the data dynamically as
it processes the executing the request?
get some terminology slightly askew, but is there a way to view what the
HTML specification calls the "form data set" used in a GET or the
"post message" prior to transmission to the server?
I know I can read each input.value attribute to see what they contain,
but the browser is "compiling" this information to append to the URI in
a GET, or to populate the post message in a POST. I would like to be
able to examine that formatted data in the client (browser) via JS prior
to submission. Does anyone know if this is contained in an object
somewhere, or does each browser read and encode the data dynamically as
it processes the executing the request?