Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple form at my site which sends it data via Ajax and then slides a message down. The sending works fine, and the message slides down, but the validation part does not work. I want it to show an alert if user doesn't fill anything at all to the field.

Here's the whole code:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>Coming Soon!</title>

        <!-- Our CSS stylesheet file -->
        <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" />
        <link rel="stylesheet" href="assets/css/styles.css" />
        <link rel="stylesheet" href="assets/countdown/jquery.countdown.css" />

        <!--[if lt IE 9]>
          <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->
        <!-- JavaScript includes -->
        <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
        <script src="assets/countdown/jquery.countdown.js"></script>
        <script src="assets/js/script.js" charset="UTF-8"></script>
        <script>

        $(function() {
    $(".submit").click(function() {
      var sposti = $("input#sposti").val();
        if (sposti == "") {
        alert ('Kirjoita nyt jotain herranjestas tuohon!');
        return false;
      }
var dataString = $('#formi').serialize();
  //alert (dataString);return false;
  $.ajax({
    type: "POST",
    url: "mailer.php",
    data: dataString,
    success: function() {
     $("#thanks").slideDown('slow');
    }   


  });
  return false;

    });
  });



        </script>


</head>

    <body>
    <div id="thanks" style="width:100%; height:100px; background:url('../img/page_bg_center.jpg') no-repeat center center;
    position:absolute; top:0px; border-bottom:2px solid black; text-align:center; display:none;"><span style="position:absolute; top:30px;">Kiitos! Saat tiedon kun sivusto avautuu :)</span></div>

        <div id="countdown"></div>

        <p id="note"></p>
        <p style="text-align:center; color:#666666; text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.3);">Haluatko tiedon kun sivusto aukeaa? Anna s&auml;hk&ouml;postisi alle.<br><br></p>
  <form action="#" method="post" style="text-align:center;" id="formi">
        <input type="email" name="sposti">&nbsp;<input type="submit" class="submit" style="width:50px;">
    </form>



    </body>
</html>
share|improve this question
"What's wrong with this ..." always sounds too localized to me. Do you expect anyone else searching for: "Problem with this..."??? – gdoron Jun 24 '12 at 18:28
Yeah... But it can't be a big problem, because it sends it? – Christian Jun 24 '12 at 18:29

4 Answers

up vote 3 down vote accepted

you're using the selector $("input#sposti"). however, you don't have an element with the id 'sposti`; set your element's id to 'spotsi' and you should be fine.

share|improve this answer
you have a little typo. It's only 1 letter so I can't edit. – 11684 Jun 24 '12 at 18:40
+ for a quick reply. – Rab Nawaz Jun 24 '12 at 18:41

it is just fine. you are missing one thing that is $.trim right here

if ($trim(sposti) == "")

because if someone types spacebar in email it will just let it go

and repalce name="sposti" to id="sposti" as mentioned by sjhonny

share|improve this answer

Replace var sposti = $("input#sposti").val(); with var sposti = $.trim($("input#sposti").val()); to remove blank spaces in the input.

share|improve this answer

Ok thanks :)

I also added a VERY simple PHP validation to it, this is okay right? It works :P

<?php
$SPOSTI =$_POST[sposti];


if ($SPOSTI=="")
{
    return false;
}
?>
share|improve this answer
this won't work. Line two is a syntax error without doubt. – 11684 Jun 24 '12 at 20:25
It has no syntax errors... And works on me. – Christian Jun 25 '12 at 7:55
that's interesting! Are you sure you didn't put sposti in quotes on the second line? – 11684 Jun 25 '12 at 8:00
Yeah, that was the code. I did it a bit more advanced to block certain words and so on. – Christian Jun 25 '12 at 8:05
wow, I need to check that out. I didn't know about this kind of indices :) – 11684 Jun 25 '12 at 10:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.