gsr
07/02/2022, 5:57 PMfunction Ack(argumentAlertID) {
$.ajax("cfc/alert.cfc?method=Update?id="+argumentAlertID,{
success : function(json){}
});
};
Scott Bennett
07/02/2022, 6:55 PM$.ajax({
url: 'cfc/alert.cfc?method=Update?id='+argumentAlertID,
type: 'GET'
}).done(function(json) {
//do stuff with json here
}
gsr
07/02/2022, 7:00 PMdrewnathanson
07/03/2022, 5:44 PMScott Bennett
07/03/2022, 6:31 PMaliaspooryorik
$.ajax
method accepts a cache: true,
option which prevents caching on GET requests (it appends a random number to the link)