I've been looking for an ajax (jQuery or any other framework) form that will send three variables in the background and then display some text instead of itself without refreshing the website.
Example:
http://net.tutsplus.com/demos/contactform/
Example above comes with tutorial, but unfortunately the PHP back-end for it doesn't work so I'm searching for something else.
Do You have something in mind? Or any tips for jQuery beginner how to build it from the ground up?
If requests like this are forbidden here then I want to ask how to send variables using this script:
$.ajax({
type: "POST",
url: "bin/process.php",
data: dataString,
success: function() {
$('#contact_form').html("<div id='message'></div>");
$('#message').html("<h2>Contact Form Submitted!</h2>")
.append("<p>We will be in touch soon.</p>")
.hide()
.fadeIn(1500, function() {
$('#message').append("<img id='checkmark' src='images/check.png' />");
});
}
});
return false;
To back-end? I had a long fight with own my bin/process.php file and nothing seems to work ("success" part of jQuery script never occurs).
Thanks a lot.
bin/process.php? – Alex Nov 23 '10 at 3:09#messageat the start to avoid bad animation and change the#contact_form's html on callback from the fade-in. – Fred Nov 23 '10 at 3:16echo '';orreturn. I'm not 100% sure, so please correct me if I'm wrong. – Fred Nov 23 '10 at 3:22