I am using rails 3.1.3, and jquery.form.js version 2.9.4, and jquery 1.7.1. I put some console print statements in jquery.form.js, so I can see (in the firebug console) that it has loaded.

And I set up my form like this:

var options = {
  success: s.update_or_add_contact_response, type: 'post', 
  dataType: 'json',  url:  s.update_contact_path
};

$('form#new_user').submit(function() {
  $(this).ajaxSubmit(options);
  return false;
});

And when I click on a button to submit the form I get the following error message in the firebug console:

$(this).ajaxSubmit is not a function

What am I doing wrong here?

link|improve this question
feedback

2 Answers

I have never used this function, but your syntax looks correct according to the doc at: http://jquery.malsup.com/form/#ajaxSubmit.

Without seeing all of your code I would guess either you aren't linking the jQuery plugin, or you aren't wrapping your code in $( document ).ready( function( ) { //code } ); as such.

Look at your source code and make sure that the plugin is being linked. Is it there?

Put in an alert just above var options. Does it output?

link|improve this answer
+1 Sounds like either the plugin is not linked correctly, or the code is executing before it's loaded. – Blowski Jan 8 at 21:57
OP: "I put some console print statements in jquery.form.js, so I can see (in the firebug console) that it has loaded." So the issue wouldn't seem to be inclusion. – Jed Jan 8 at 22:51
feedback

Maybe you're missing the document.ready wrapper?

$(function() { // same as document.ready
    var options = {
      success: s.update_or_add_contact_response, type: 'post', 
      dataType: 'json',  url:  s.update_contact_path
    };

    $('form#new_user').submit(function() {
      $(this).ajaxSubmit(options);
      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.