What's wrong with this?

HTML:

<form action="http://localhost:8888/bevbros/index.php/test" method="post" accept-charset="utf-8" id="cpa-form" class="forms">        
      <input type="text" name="zip" value="Zip code" id="Zip" class="required valid">      
      <input type="submit" name="Next" value="Submit" class="forms" id="1">
  </form>

jQuery:

$("#cpa-form").submit(function(e){
    e.preventDefault();
  });

This still posts through to http://localhost:8888/bevbros/index.php/test

link|improve this question

3  
Works fine here. Can you post more information in your question? If you alert() in the submit handler does it get called? If not, then it could be that there's an error in your script that's prevent the event handler from being wired up correctly. Anything in the error console? – Town Jun 24 '11 at 0:47
That link is internal and of no use to us. – stevether Jun 24 '11 at 0:52
Perhaps an older version was cached. Looks to be working now. – djreed Jun 24 '11 at 8:10
feedback

1 Answer

up vote 3 down vote accepted

Try this:

$("#cpa-form").submit(function(e){
    return false;
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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