Reputation: 24288
I know that Firebug can display data sent by AJAX, but I cannot find way to see data sent by pressing button "Submit" on form of web page. Is it possible? Thanks.
Upvotes: 1
Views: 749
Reputation: 17545
Yes, Firebug can do that. Simply click on "Persistent" in the Network Tab, so that the request doesn't vanish after the page reloads.
Upvotes: 2
Reputation: 19912
Firebug also does this. Look in the "Net" tab. Each HTTP request is listed below it. Just click the + icon next to request your interested in and you can inspect the Request, Response, Post, HTML .
Upvotes: 3