AJAX Post Question - RESOLVED
I hope I am in the correct forum. Apologies if not.
I have been using JQuery validation and discovered that the submit does not submit the input data after validation. So I did some searching and found $.ajax post.
The part of the code looks like:
$.ajax({
type: "POST",
url: "install1.php",
data: dataString
});
return false;
$( "#tabs" ).tabs( "option", "disabled", [ 0, 1, 2, 3, 5, 6, 7, 8, 9, 10 ] );
$( "#stepprogress" ).progressbar({ value: 0 });
$( "#totalprogress" ).progressbar({ value: 40 });
$("tabs").tabs("enable", 4);
$("#tabs").tabs("option", "active", 4);
$("#tab4").load("install1.php");
and it is working. My question is: Is the url: in the ajax post executed from that command or do I still need to do the .load("install1.php"); at the end of the function?
Also, the code after the ajax post does not seem to be executing. I could not find the answers in the documentation API.
Help is greatly appreciated. Thanks in advance.
Mike