03.
<head>
04.
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
05.
<title></title>
06.
<script type=
"text/javascript"
src=
"......................."
></script><!--ตรงนี้ให้เอาpathไฟล์jqueryมาใส่-->
07.
<script type=
"text/javascript"
>
08.
09.
$(document).ready(
function
() {
10.
$(
"#test_1"
).mouseover(
function
() {
11.
12.
$.ajax({
13.
type :
"POST"
,
14.
url :
"call_data.php"
,
15.
cache : false,
16.
data :
"data_id=1"
,
17.
success:
function
(data) {
18.
19.
$(
"#result"
).html(data);
20.
}
21.
});
22.
});
23.
});
24.
</script>
25.
26.
</head>
27.
28.
<body>
29.
<div id=
"test_1"
>เอาเมาส์วางตรงนี้</div>
30.
<br />
31.
<div id=
"result"
></div>
32.
</body>
33.
</html>