Ask the Community
Ask any professional question and get answers from other specialists.
$.post( "submit.php", "username="+username+"&password="+password, function( data ) { alert(data); } In this case data are not post ... See More
The JQuery syntax is wrong Try this $.post( "submit.php", {username:username,password:password}, function( data ) { alert(data); } ); Also the variables ... See More
I think using Jquery will be just fine and support all browsers including IE6: http://www.w3schools.com/jquery/jquery_ajax_get_post.asp http://www.w3schools.com/jquery/jq ... See More
AJAX makes a web page to loaded dynamically. We don't need to refresh page everytime we make a change.
I am not sure on "What new features ?" There might be a lot which depends on your requirement. As of me, User Experience is the best part of Ajax. It eliminates ... See More
IMHO Ajax has the following key features which makes it so powerful 1- Asynchronous communication between server n client 2- bosst web app speed due to partial postbacks ... See More
You can learn it from following URLs: http://api.jquery.com/jQuery.post/ http://api.jquery.com/jQuery.ajax/ http://www.w3schools.com/jquery/jquery_ref_ajax.asp http://www ... See More
This could be done using jQuery like this: $("#form_id").submit(function(){ $.ajax({ data: $(this).serialize(), //serialize the form data to be sent url:'s ... See More