Hello,
I'm using jquery's $.post like this:
$.post("/searchresult", $("#searchDiv").serialize(), function(data) { //??? });
The "data" parameter has all the html code of the result page I want.
The question is how do I replace my current page's content with this one returned by the $.post function.
Thanks,
Rui