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.

This is my code:

<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery.validate.js"></script>
<script type="text/javascript">
$(document).ready(function() {
     $("#alta").validate();
});
</script>
<form id="alta" method="post" action="<?= $this->Html->url('/'); ?>alta">
    <label>Nombre:</label>
    <input type="text" id="name" class="field required" name="data[name]">
</form>
<a href="#" onClick="alta.submit(); return false;" id="button" class="button">Send</a>

And my problem is I do not use submit input, need to use a link, but submits the form and not valid.

thanks

share|improve this question
onClick="alta.submit() will have same effect of <input type=submit> – duke Feb 21 '12 at 10:37

2 Answers

up vote 1 down vote accepted

Without a submit button you need to check the form is valid manually.

Firstly, remove the onclick attribute from your HTML - this is not a good method of attaching events.

<a href="#" id="button" class="button">Send</a>

Then place this in your jQuery code:

$("#button").click(function() {
    if ($("#alta").valid()) {
        $("#alta").submit();
    }
});
share|improve this answer

inside the click handler validate the form.

   $("#button").click(function(e){
    e.preventDefault();
    if($("#alta").valid()){
        //submit
        $("#alta").submit();
    } 
    else
       return false;
  });

also (after reading the comments) you dont need to validate the form in document ready

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.