I'm using Joomla 3 with Crosstec Content Builder Extension and I created a list view for Fron-end users and it's working successfully without any problem:
http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6
I want to get the extension result via Ajax request without the full website but I'm not able to find the right URL to achieve this behavior.
I tried so many stuff including:
http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&format=raw
http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=ajax&id=6
I hope some can help me.
EDIT:
jQuery.ajax({
type: "GET",
url: "http://epc.aratech.co/index.php/en/?option=com_contentbuilder&view=list&id=6&format=raw",
success: function (msg) {
alert(msg);
}
});