01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com jQuery Tutorials</title>
04.
<style>
05.
div.demo {
06.
background:
#CCCCCC none repeat scroll 0 0;
07.
border:3px solid
#666666;
08.
margin:5px;
09.
padding:5px;
10.
position:relative;
11.
width:200px;
12.
height:100px;
13.
overflow:auto;
14.
}
15.
p { margin:10px;padding:5px;border:2px solid
#666;width:1000px;height:1000px; }
16.
</style>
17.
<script type=
"text/javascript"
src=
"jquery-1.6.4.js"
></script>
18.
<script type=
"text/javascript"
>
19.
$(document).ready(
function
(){
20.
21.
$(
"div.demo"
).scrollLeft(300);
22.
23.
});
24.
</script>
25.
</head>
26.
<body>
27.
28.
<div class=
"demo"
><h1>lalala</h1><p>Hello</p></div>
29.
30.
</body>
31.
</html>