These scripts were working fine not long ago, although suddenly they don't want to work... not sure if they were working after I put them into a subfolder, what do you think the problem might be?

AJAX form:

$(function() {
  $('.error').hide();

    $(".button").click(function() {
    // validate and process form
    // first hide any error messages
    $('.error').hide();

  var name = $("input#name").val();
    if (name == "") {
  $("label#name_error").show();
  $("input#name").focus();
  return false;
}
  var company = $("input#company").val();

    var email = $("input#email").val();
    var atpos=email.indexOf("@");
    var dotpos=email.lastIndexOf(".");
    if (atpos<1 || dotpos<atpos+2 || dotpos+2>=email.length){
  $("label#email_error").show();
  $("input#email").focus();
  return false;
}   

  var phone = $("input#phone").val();
  var strLen = phone.length;
    if (phone == "") {
  $("label#phone_error").show();
  $("input#phone").focus();
  return false;
}

var address = $("input#address").val();
var type = $("select#type").val();
var bed = $("select#bed").val();
var furn = $("input#furn").val();
var comments = $("textarea#comments").val();
var updates = $("input#updates").val();

    var dataString = 'name='+ name + '&company=' + company + '&email=' + email + '&phone=' + phone + '&address=' + address + '&type=' + type + '&bed=' + bed + '&furn=' + furn + '&comments=' + comments + '&updates=' + updates;
    //alert (dataString);return false;

    $.ajax({
  type: "POST",
  url: "./submit.php",
  data: dataString,
  success: function() {
    $("#text").animate({"marginTop": "0"}, 1000);
    $('#contact_form').html("<div id='message'></div>");
    $('#message').html("<p>Thanks!<br /></p>")
    .append("<p>We will be in touch soon.</p>")
    .hide()
    .fadeIn(1500, function() {
      $('#message');
    });
  }
 });
return false;
});
});

PHP form:

<?php
  @$name = $_POST["name"];
  @$company = $_POST["company"];
  @$email = $_POST["email"];
  @$phone = $_POST["phone"];
  @$address = $_POST["address"];
  @$type = $_POST["type"];
  @$bed = $_POST["bed"];
  @$furn = $_POST["furn"];
  @$comments = $_POST["comments"];
  @$updates = $_POST["updates"];
    if(strlen($name)>0 && strlen($company)>0 && strlen($email)>0 && strlen($phone)>0)
     {
      mail("gail@instantinteriors.com.au", "Instant Interiors Contact Form", "Name: $name\nCompany: $company\nEmail: $email\nPhone: $phone\nAddress: $address\nProperty Type: $type\nNo. of Bedrooms: $bed\nFurnished: $furn\nComments: $comments\nEmail updates: $updates\n", "From: $email"
      );
     echo "<p>Thank you.<br /><p>We will contact you shortly.</p>";
     }
 ?>
link|improve this question

75% accept rate
What do you mean "Moved into a subfolder"? Does the url in ajax call reflect this change? Do you get any error in the js console? – Damien Pirsy Feb 8 at 23:19
The Ajax works fine, when validating etc. But when the form is completed it doesn't submit and show the final message. The URL should be fine as it searches for the submit.php which is located in the same folder as the validation script. – Louis McSellout Feb 8 at 23:21
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.