I have an Ajax call:
callAjaxController: function(){
var url = Routing.generate('ajax_price');
$.ajax({
type: "GET",
url: url,
cache: false,
success: function (data, status) {
// get the <body> markup to replace my actual body page
}
})
},
In my Ajax response, I would like to get the <body>
markup to replace my actual body page.
Is it possible? How can I do that?