Project

General

Profile

AddTable JavaScript » History » Version 1

Tomek Dziemidowicz, 2019-07-18 09:15 PM

1 1 Tomek Dziemidowicz
h1. AddTable JavaScript
2
3
<pre><code class="javascript">
4
$.ajax({
5
    url: sqlitesync_SyncServerURL + "AddTable/users",
6
    method: 'GET',
7
    scope:this,
8
    cache : false,
9
    timeout: 5 * 60 * 1000,//10min
10
    success: function(){
11
12
    },
13
    failure: function (result, request) {
14
15
    }
16
});
17
</code></pre>
Go to top