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.

A standard form is submitted and I want jquery to determine if its valid first, returning true or false (need false to work). But it just goes on to the action page in any case.

HTML:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title></title>
<link href="user.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="jquery-1.7.min.js"></script>
<script type="text/javascript" language="javascript" src="regValidation.js"></script>
</head>
<body>
<form id="regform" action="BookstorePage.php" method="post">            
<label for="f_name">First name</label>
<input type="text" name="f_name" id="REG_FNAME" />                  
<label for="l_name">Last name</label>
<input type="text" name="l_name" id="REG_LNAME" />
<input id="btnsubmit" type="submit" name="reg_submit" value="Register!" />
</form>
</body>
</html>

Jquery script:

$("#regform").submit(function() {
alert('Handler for .submit() called.');
return false;
});

However; $(window).load(function () {}); does work.

share|improve this question

2 Answers

up vote 1 down vote accepted

You need use $(function() { ... }), it will triggered on document ready. Something like:

$(function() {
    $("#regform").submit(function() {
        alert('Handler for .submit() called.');
        return false;
    });
});
share|improve this answer
Yes, that did the trick. Thank you =) – gorn Nov 27 '11 at 15:22

This works for me:

<html>
    <head>
        <title>Test asdfg</title>
        <style type="text/css">
            #iframeStateChangelog {
                height: 80px;
                overflow: auto;
            }
        </style>
    </head>
    <body>
        <form id="regform" action="BookstorePage.php" method="post">            
            <label for="f_name">First name</label>
            <input type="text" name="f_name" id="REG_FNAME" />                  
            <label for="l_name">Last name</label>
            <input type="text" name="l_name" id="REG_LNAME" />
            <input id="btnsubmit" type="submit" name="reg_submit" value="Register!" />
        </form>
        <script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js"></script>
        <script type="text/javascript">

            var RegForm = null;

            var RegForm_OnSubmit = function(e) {
                alert('handler for submit event');
                e.preventDefault();
                return false;
            };

            $(function() {
                RegForm = $("form");
                RegForm.bind('submit', RegForm_OnSubmit);
            });


        </script>
    </body>
</html>
share|improve this answer

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.