01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com jQuery Tutorials</title>
04.
<style>
05.
textarea { height:25px; }
06.
</style>
07.
<script type=
"text/javascript"
src=
"jquery-1.6.4.js"
></script>
08.
<script type=
"text/javascript"
>
09.
10.
$(document).ready(
function
(){
11.
12.
var
input = $(
"form input:text"
).css({background:
"yellow"
, border:
"3px red solid"
});
13.
$(
"div"
).text(
"For this type jQuery found "
+ input.length +
"."
)
14.
.css(
"color"
,
"red"
);
15.
$(
"form"
).submit(
function
() {
return
false
; });
16.
17.
});
18.
19.
20.
21.
</script>
22.
</head>
23.
<body>
24.
25.
<form>
26.
<input type=
"button"
value=
"Input Button"
/>
27.
<input type=
"checkbox"
/>
28.
29.
<input type=
"file"
/>
30.
<input type=
"hidden"
/>
31.
<input type=
"image"
/>
32.
33.
<input type=
"password"
/>
34.
<input type=
"radio"
/>
35.
<input type=
"reset"
/>
36.
37.
<input type=
"submit"
/>
38.
<input type=
"text"
/>
39.
<select><option>Option</option></select>
40.
41.
<textarea></textarea>
42.
<button>Button</button>
43.
</form>
44.
<div>
45.
</div>
46.
47.
</body>
48.
</html>