Hentikan Eksekusi di JQuery

Try this:

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