We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c60aa7 commit 34a98b7Copy full SHA for 34a98b7
1 file changed
index.html
@@ -18,7 +18,7 @@
18
<div id="ajaxResult">Loading.... </div>
19
20
<footer class="footer text-center" style="margin-top: 100px;" >
21
- <p>© 2017 ITCS's Dev.</p>
+ <p>© 2017 ITCS's Developer.</p>
22
</footer>
23
</div>
24
@@ -28,10 +28,17 @@
28
<script src="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.7.0/sweetalert2.js"></script>
29
<script src="js/cookie_helper.js"></script>
30
<script>
31
- var ajaxResult;
+ var ajaxResult = $('#ajaxResult');
32
+
33
$(function(){
- ajaxResult = $('#ajaxResult');
34
- ajaxResult.load('view/_exam.html');
35
+ $.ajaxSetup ({
36
+ cache: false
37
+ });
38
39
40
+ ajaxResult.load('view/_summary.html');
41
+ //ajaxResult.load('view/_exam.html');
42
});
43
</script>
44
</body>
0 commit comments