01.
<script src=
"../js/jquery-1.3.2.min.js"
></script>
02.
<script type=
"text/javascript"
>
03.
function
getRefresh() {
04.
$(
"#auto"
).show(
"slow"
);
05.
$(
"#auto"
).load(
"04_2.php?"
+Math.random(),
''
, callback);
06.
}
07.
08.
function
callback() {
09.
$(
"#auto"
).fadeIn(
"slow"
);
10.
setTimeout(
"getRefresh();"
, 1000);
11.
}
12.
13.
$(document).ready(
14.
function
(){
15.
getRefresh();
16.
}
17.
);
18.
</script>