Ginza
Ginza

Reputation: 83

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

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?

Upvotes: 0

Views: 79

Answers (3)

Joberror
Joberror

Reputation: 5890

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

Upvotes: 0

CrayonViolent
CrayonViolent

Reputation: 32532

Look in the "Net" tab.

Upvotes: 1

meder omuraliev
meder omuraliev

Reputation: 186562

Open the console tab and observe.

Upvotes: 1

Related Questions