When an update or a create is executed via the transport object, how do I get the HTML response from the server?
update URL:
and this will respond with 0 or 1
create URL:
this will respond with an ID of the newly create dticket.
How do I get this response HTML?
update URL:
var url = "/support/markasread/" + support_id + "/";
and this will respond with 0 or 1
create URL:
var url = "/support/newticketpost/";
this will respond with an ID of the newly create dticket.
How do I get this response HTML?