I am on a website…it has jquery and is sending some requests using javascript out to a php page.
Is their any way to see what data it is sending out from my computer and/or which URLs it is talking to?
I am using firefox and can load software if their is any needed.
EDIT – I have downloaded firebug and have the page loaded. Any idea what option I need to select?
In Firebug, you can open the “Console” panel. Every time an AJAX request is made, you’ll see either GET or POST and the URL that the request was sent to logged. You can click on the triangle beside it to expand, and then click through the various tabs to see the data sent, the response back, and other assorted information.
EDIT: The XHR tab in the “Net” panel will show you the same information as well.