[jQuery] Jquery how to get attribute from a HttpServletRequest

[jQuery] Jquery how to get attribute from a HttpServletRequest


Hallo all: I got this piece of code:
$("#faq").click(function () {
var url = $.get("faq", { pagina: "page" });
alert(url);
});
On "faq" responds a Servlet tha set an attribute on the request ....
request.setAttribute("pageFAQ", pageFAQ); ....
After the get jqeury print me [object XmlHttpRequest I would like to
access to the attribute setted in the Servlet but I dunno how to do.
Any idea?
Kind regards
Massimo UGues