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
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