-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsketch.js
More file actions
41 lines (31 loc) · 758 Bytes
/
sketch.js
File metadata and controls
41 lines (31 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
function setup() {
}
var _userID;
var __userID;
var userID;
for (i = 1; i < 1000; i++) {
if (i < 10) {
_userID = "";
}else if(i < 100) {
_userID = "";
}else if(i < 1000) {
_userID = "";
}else if(i < 2000) {
_userID = "";
}
userID = _userID + i;
var __userID = { id: userID };
$.ajax({
url: "",
type: 'POST',
dataType: 'json',
contentType: 'application/json',
data: JSON.stringify(__userID),
success: function(responseINFO) {
var _responseINFO = JSON.stringify(responseINFO, null, 4);
document.write(_responseINFO + "<br> <br>");
}
});
}
function draw() {
}