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 want to submit a form via ajax but i dnt know why form is not submiting via ajax. why ajax not picking the submit id..this code just submitting as usual way but not through ajax help me where i am wrong ..

 echo form_open('Contact_Controller/submit');
 echo form_input('name', set_value('name'), 'id="name"');
 echo form_input('email', set_value('email'), 'id="email"');
 $data = array(
        'name'=> 'message',
        'id' => 'message',
        'cols'=> '35',
        'rows' => '12'

        );
 echo form_textarea($data, 'Message');
 echo form_submit('submit', 'Submit', 'id="submit"');
 ?>

<script type = "text/javascript">
$('#submit').click(function(){

var form_data = {
        name: $('#name').val(),
        email: $('#email').val(),
        message: $('#message').val()
};

$.ajax({
    url: "<?php echo site_url('tuts_Contact_Controller/submit'); ?>",
    type: 'POST',
    data: form_data,
    success: function(msg) {
      alert(msg);
    }

});

</script>
share|improve this question
2  
either use e.preventDefault(); or return false; – Jai Jan 3 at 9:07
still not working – Irfanz Sheikh Jan 3 at 9:17

closed as too localized by tereško, Michael Berkowski, François Wahl, Frank van Puffelen, SztupY Jan 5 at 15:04

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Use this way:

and i am guessing that you are having jquery above this script.

<script type = "text/javascript">
$(function(){       // <----------------missed the doc ready function
  $('form').submit(function(e){
    e.preventDefault(); // <------this will restrict the page refresh
    var form_data = {
        name: $('#name').val(),
        email: $('#email').val(),
        message: $('#message').val()
    };

    $.ajax({
        url: "<?php echo site_url('tuts_Contact_Controller/submit'); ?>",
        type: 'POST',
        data: form_data, // $(this).serialize(); you can use this too
        success: function(msg) {
              alert(msg);
        }

   });
 });
});
</script>
share|improve this answer
thanksssssssssss it works – Irfanz Sheikh Jan 3 at 9:23
Great! It would be better if you accept it as an answer to your question not only this will increase your accept rate but you will get more responses in future. – Jai Jan 3 at 9:45
how to accept? follow this: meta.stackoverflow.com/questions/5234/… – Jai Jan 3 at 9:50

you should prevent the default event of form submit like:

$('#submit').click(function(evt){
  evt.preventDefault();
  ....
share|improve this answer
not working ... – Irfanz Sheikh Jan 3 at 9:17
do you see any error in console ..? – Sudhir Jan 3 at 9:19

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