Issue 2977: [Firebug Lite] HTTP parameters in the console
test markup
Steps to reproduce
- Load Firebug Lite
- Load jQuery
- Execute the following code:
$.post("post.php?param1=1", "param2=2", function(req, status) { if (status == "success") { // this line should be executed } });
Expected Result
- The marked line should be executed, that is, the "complete" callback function should be called
- There should be one log entry in the Console Panel
- There should be a parameter "param1" in the XHR Info "Params" Tab
- There should be a parameter "param2" in the XHR Info "Post" Tab