Also, since you are using firebug.
Try using `console.log () '. It is very comfortable.
You can view the output after executing the script, rather than interrupting execution, and then deal with ajax timeouts.
All you may need is ...
$.ajax({ url: "...", success: function(response){ console.log(response); } });
source share