01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com jQuery Tutorials</title>
04.
<style>
05.
div.demo {
06.
07.
border:3px solid #666666;
08.
margin:5px;
09.
padding:5px;
10.
position:relative;
11.
width:800px;
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"
>
18.
$(document).ready(
function
(){
19.
20.
$(
"div.demo"
).scrollLeft(300);
21.
22.
});
23.
</script>
24.
</head>
25.
<body>
26.
27.
<div
class
=
"demo"
><h1>lalala</h1><p>Hello</p></div>
28.
29.
</body>
30.
</html>