a

Javascript code posted by a
created at 08 Jan 04:32, updated at 12 Feb 23:40

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
actionContext.ajaxClient.get(
    '/service/example/v1/test',
    {},
    {},
    {
        error: function( err ){
          //take action when an error occurs
        },
        success: function (response){
          //take action when an success occurs
        },
        complete: function (err, response){
          //take action when a response is recieved
        }
    }
);
397 Bytes in 2 ms with coderay