Hello all:
I have this piece of code:
$("#faq").click(function () {
var url = $.get("faq", { pagina: "page" });
alert(url);
});
On "faq" responds to a Servlet that sets an attribute on the request
....
request.setAttribute("pageFAQ", pageFAQ);
....
After the get jqeury prints [object XmlHttpRequest].
I would like to access to the attribute set in the Servlet but I don't know how to do it.
Any idea?
Kind regards
Massimo UGues