This example shows accessing form inputs using jQuery. Here "#check", "#name" are ID selectors. We need to prefix ID attribute of the tag with '#' to reference the element.
01
<
html
>
02
head
03
script
type
=
"text/javascript"
src
"js/jquery.js"
></
04
05
06
$(function(){
07
08
$("#check").click( function() {
09
alert($("#name").val());
10
$("#name").val("Be the coder..")
11
} );
12
13
});
14
15
</
16
17
body
18
19
input
"text"
id
"name"
value
"SAAS"
/>
20
br
21
"button"
"check"
"Test"
22
23
24