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.

I am having issue making a form be sent using ajax.

Here is my code:

<form id="form" method="get">
    <input type="text" name="name" id="name"><br>
    <input type="text" name="email" name="email"><br>
    <input type="submit" id="submit" value="submit">
</form>


$('#submit').click(function(event){
    alert('ajax');
});

The "ajax" alert shows, but then the page gets reloaded! How can I stop this behaviour?

share|improve this question

2 Answers

up vote 3 down vote accepted

You have to use preventDefault

$('#submit').click(function(event){
    event.preventDefault();
    alert('ajax');        
});
share|improve this answer
2  
With preventDefault, is there any reason to still use the (much earlier style) return false? – user166390 Jun 9 '12 at 23:18
And if you're going to be doing this a lot, think about using the jQuery Form Plugin. It'll make your life a lot easier. – Xavier Holt Jun 9 '12 at 23:18

use $.submit() instead of click :)

$('#form').submit(function(event){
    alert('ajax');
    // here some ajax functions for sending via get or post ;)
    return false; // this stops loading the action site.. its something like e.preventDefault() on links
});
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.