Frameworks| Hibernate| Struts| JSF| JavaFX| Ajax| Spring| DOJO| JDO| iBatis| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials:
 

Software Solutions and Services
 

 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
 
jQuery to Post Data Check 
 

In this first jQuery tutorial we will develop a simple program that checking the data Post to server and displays on the user browser.

 

jQuery to Post Data Check

                         

In this first jQuery tutorial we will develop a simple program that checking the data Post to server and displays on the user browser. In this example we will be calling a server side PHP script . You can easily replace PHP with JSP, or ASP program.

Steps to develop the Post Data Check program

Step 1:

Create php file to that prints the response from the server. Here is the code of PHP script (comment.php).

<?
if($_POST['name']!="" && $_POST['comment']!="")
echo "success";
?>

Step 2:

Write HTML page to call the  comment.php. Create a new file (formPost.html) and add the following code into

   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
 
<head> 
    <script type="text/javascript" src="script/jquery.js"></script> 
    <script type="text/javascript" src="script/jquery.form.js"></script> 
 
    <script type="text/javascript"> 
        // wait for the DOM to be loaded 
        $(document).ready(function() { 
            // bind 'myForm' and provide a simple callback function 
            $('#myForm').ajaxForm(function(data) { 
				if(data=="success")
                alert("Thank you for your comment!"); 
            }); 
        }); 
    </script> 
</head>



 <BODY>
<form id="myForm" action="comment.php" method="post"> 
    Name: <input type="text" name="name" /> 
    Comment: <textarea name="comment"></textarea> 
    <input type="submit" value="Submit Comment" /> 
</form>
 </BODY>
</HTML>

Program explanation:

The following code includes the jQuery JavaScript library file:

<script type="text/javascript" src="script/jquery.js"></script> 
    <script type="text/javascript" src="script/jquery.form.js"></script> 

On the Form submission  function is called:

The code

$('#myForm').ajaxForm(function(data)

url : "comment.php",
...

makes ajax call to comment.php file.

Following code intercepts the ajax call success and then post the data with form id "myForm".

When the Post Data Successfully Then alert Message Print. 

 

When you run the program in browser it will look like following screen shot:

 

Check online demo of the application

                         

» View all related tutorials
Related Tags: jquery c query image tutorial scroll ria this simple program to ram e il im dev first in m j

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Website Designing Services
 
Web Designing Packages From $150!
 
Website Designing Company Web Hosting
 
Website Designing Quotation
 
Search Tutorials:

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.