When I loaded a web page after submitting something into a javascript-type “form” I looked at the HTTP headers with the Firefox add-on. Everything in the headers make sense except for 16 random characters in the middle that always came after the word “callback”. I don’t know what they mean or where they come from.
These are all from SEPERATE “form submissions” if you will.
As you can see, they all start out with the same thing:
But after that, there is always a set of 16 seemingly random characters. I understand the rest of this “url” but these 16 characters don’t make sense to me. Is there any way to generate them or get them before the request is sent?
Thanks!
These are almost certainly “AJAX” requests, being used as JSONP. The
callback...value is the name of a dynamically-created JavaScript function to handle the results of the data returned by the HTTP request.I’d recommend using Firebug to view all of this – it may help shed a little more light on things.