showing results for - "clear cache after ajax success"
Danielle
28 Aug 2018
1$.ajax({
2    type: "POST",
3    async: true,
4    url: "/manage/update_position/",
5    data: {
6        "action": action.
7        "model": model,
8        "object_id": object_id,
9        "position": position
10    },
11    cache: false,
12    dataType: "json",
13    success: function(data){
14        //[snip]
15    }
16});
17