When I run the following XmlHttpRequest
$.get('../entries/find_most_recent',
{name:$("#name").val()},
function(data) {
console.log("data");
});
The result can be seen in this Firebug screenshot:
But when I remove the quotes from console.log("data"), like so:
$.get('../entries/find_most_recent',
{name:$("#name").val()},
function(data) {
console.log(data);
});
Nothing comes up in Firebug. The response is just a string, as can be seen in the screenshot above. How do I access it? Thanks for reading.

Responsetab is empty if you remove the quotes? Sounds pretty much impossible, since the point where you receive theresponseis way before anyjavascriptcomes into play.console.log("data");is logging the stringdata(which correctly appears in the bottom of the screen shot). The actualdataor the request is unrelated. Could this be a Firebug bug?console.log(data)theResponse Tabfrom Firebug should displayhey. I can't tell whyFirebugdoes not display the string. You should try to set thedataTypeto text within your$.get()request.