views:

18

answers:

3

In my HTML I'm sending a dollar amount back to the server to have its currency changed in the app.

How can I tell in FireBug what JavaScript is being sent back from the server after this Ajax request?

+1  A: 

Open the console tab and observe.

meder
+1  A: 

Look in the "Net" tab.

Crayon Violent
A: 

Open the console tab > click the arrow button > select show XMLHttpRequests > run your script and observe in the CONSOLE or NET tab

joberror