-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
68 lines (54 loc) · 1.93 KB
/
demo.html
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Syamvilakudy/Jax - Light weight fast ajax system using azrul-ajax</title>
<script language="javascript" src="http://code.jquery.com/jquery-1.9.1.js" ></script>
<script language="javascript">
var jax_live_site = 'http://localhost/jax/Request.php';
var jax_site_type = '2.5';
var jax_token_var='123456';
</script>
<script language="javascript" src="ajax_1.5.js" ></script>
<script language="javascript">
jQuery(documnet).ready(function(){
});
</script>
<style>
a { text-decoration:none}
</style>
</head>
<body>
<div id="div1"></div>
<div id="div2"></div>
<div id="div3"></div>
<div id="div4"></div>
<div id="alltriggers">
<h1>
<a href="javascript:void(0)" onclick="jax.call('test','test,alertCall');">
Alert response from server [ jax.call('test','test,alertCall'); ]
</a>
</h1>
<h1>
<a href="javascript:void(0)" onclick="jax.call('test','test,emptyCall');">
Response without argument call [ jax.call('test','test,emptyCall'); ]
</a>
</h1>
<h1>
<a href="javascript:void(0)" onclick="jax.call('test','test,argumentCallSingle',1);">
Response with single argument [ jax.call('test','test,argumentCallSingle',1); ]
</a>
</h1>
<h1>
<a href="javascript:void(0)" onclick="jax.call('test','test,argumentCallMultiple',1,2);">
Response with multiple argument [ jax.call('test','test,argumentCallMultiple',1,2); ]
</a>
</h1>
<h1>
<a href="javascript:void(0)" onclick="jax.call('test','test,outputFromTemplate');">
Response with multiple argument [ jax.call('test','test,outputFromTemplate'); ]
</a>
</h1>
</div>
</body>
</html>