tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 jQuery > Basic > Get form inputs

Get form inputs 

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.

File Name  :  
source/JQUERY/basic/forminputs.html 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01<html>
02 <head>
03 <script type="text/javascript" src="js/jquery.js"></script>
04 <script type="text/javascript">
05 
06$(function(){
07 
08  $("#check").click( function() {
09        alert($("#name").val());
10        $("#name").val("Be the coder..")
11  } );
12 
13});
14 
15 </script>
16 </head>
17 <body>
18 
19    <input type="text" id="name" value="SAAS"/>
20    <br>
21    <input type="button" id="check" value="Test"  />
22 
23 </body>
24 </html>




 
  


  
bl  br