01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com jQuery Tutorials</title>
04.
<style>
05.
div {
06.
width: 90px;
07.
height: 90px;
08.
float:left;
09.
padding: 5px;
10.
margin: 5px;
11.
background-color: #EEEEEE;
12.
}
13.
</style>
14.
<script type=
"text/javascript"
src=
"jquery-1.6.4.js"
></script>
15.
<script type=
"text/javascript"
>
16.
17.
$(document).ready(
function
(){
18.
19.
$(
"#myDiv"
).css(
"border"
,
"3px solid red"
);
20.
21.
});
22.
</script>
23.
</head>
24.
<body>
25.
26.
<div id=
"myDiv"
>id=
"myDiv"
</div>
27.
28.
</body>
29.
</html>