-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
46 lines (38 loc) · 821 Bytes
/
test.php
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
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"> </script>
<script type="text/javascript">
$(function(){
$("#submit_answer").click(function(){
$("#answer").load("testajax.php");
});
});
</script>
<style>
#answer{
position:absolute;
top:0px;
left:0px;
font-family: arial;
font-size: 60px;
z-index:100;
}
img{
position:absolute;
top:0px;
width:200px;
height:200px;
}
#submit_answer{
position:absolute;
top:100px;
}
</style>
</head>
<body>
<div id="answer">hello</div>
<img src="images/kim_kardashian.jpg">
<button id="submit_answer">submit</button>
</body>
</html>