jQuery submit function not working properly

19,987

Solution 1

Don't use return false;. Try this instead:

$('#test').submit(function(event){
      event.preventDefault();
});

Solution 2

Replace:

$('#test').submit(function(){
      return false;
});

with:

$('form#test').submit(function(event){    
      event.preventDefault();
});

Solution 3

If you just dont want to submit the page you can simple use

onsubmit="return false" or if you want conditional submission that also is possible with the code that you have.

I don't see any issue with this

DEMO

Code:

$('#test').submit(function(event) {
    if(jQuery('#textbox').val() == '') {
       alert('Not submitting');
       //event.preventDefault(); Not necessary but better
       return false;
    }
})

Solution 4

This is sometimes a result of JS libraries or custom code that conflicts with the behavior of the submit handler, (for example having another submit handler that submits explicitly the form).

The ideal solution would be to debug and find the conflicting code and solve it.

But as a workaround one can change to use instead a click handler on the submit button, instead of a submit handler on the form.

One can do something like this:

    <input type="submit" id="btnSubmit">    

Then in code you can do

$('#btnSubmit').click(function(){ //Actually we can do 'input[type="submit"]'
    return false;
})

However one has to be careful if the form allows to be submitted by hitting "enter", as in this case the calling of the click handler might be browser dependent and/or based on the libraries in use, see the comments in onsubmit="return false" has no effect on Internet Explorer 7/8 (form is still submitted) on Dirk Paessler's answer for more info.

But in order to be browser independent one might catch the "enter" key press button as well, as in the following code:

document.onkeypress = function(evt) {
   var evt = (evt) ? evt : ((event) ? event : null);
   var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
   if ((evt.keyCode == 13) && (node.type == "text")) { 
         /*return true or false here based on your logic*/;
   }
}

However one might also try the other suggestions in this thread such as calling e.preventDefault() directly, although this is what Jquery actually does behind the scenes, still it might be that your conflicting code is fine with it

Share:
19,987
jame
Author by

jame

love coding and interested in any new computer technology.

Updated on June 05, 2022

Comments

  • jame
    jame almost 2 years

    I have some questions with jQuery submit function.

    here is work environment

    jQuery: 1.7.2, chrome (18.0.1025.168 m).

    There are 2 problems.

    1st:

    my codes like this

    html

    <form id="test" action="..." method="post">
         <input type="text" />
         <input type="submit">
    </form>
    

    jQuery

    $('#test').submit(function(){
          return false;
    })
    

    the problem is it works fine in firefox and opera but chrome.

    2st:

    html: as above.

    jQuery:

    $('#test').submit(function(){
          if(...)
             alert(something..);
          return false;
    })
    

    it dosen't work in firefox,opera and chrome. it always trigger form.submit why.

    I am very confused it. who can figure it out thanks!

    • Nathan Taylor
      Nathan Taylor about 12 years
      Can you please post your IF statement?
    • jame
      jame about 12 years
      the IF statement is very simple it no problem. like if(flag) the flag's value is a boolean value.
    • gdoron is supporting Monica
      gdoron is supporting Monica almost 12 years
      The accepted answer is wrong. return false should preventDefault. Read this I might write a full answer here if you like.
    • jame
      jame almost 12 years
      Thank you,if you write a full answer here I will appreciate it.
  • VisioN
    VisioN about 12 years
    I did get the same vague downvote with the same "co-answerer(s)" here. Seems a bit of a strange.
  • moribvndvs
    moribvndvs about 12 years
    So I guess I'm not going out on a limb by saying iambriansreed doesn't play well with others, despite the fact that I answered almost a minute before he did.
  • jame
    jame about 12 years
    something strange, it could not work just now but now it is ok.
  • jame
    jame about 12 years
    Something strange, i try onsubmit="validate()" and the function validate return false,but it always trigger form.submit. but it work like fine now. thanks.
  • mprabhat
    mprabhat about 12 years
    sometimes things happen and you can never get to know why it happened :) happy to see you have a solution
  • iambriansreed
    iambriansreed about 12 years
    Actually I up voted your answer and my answer was submitted before yours. I only edited for clarity.
  • gdoron is supporting Monica
    gdoron is supporting Monica almost 12 years
    @VisioN. (continuing from other thread...) This answer as the accepted answer are both wrong. return false should preventDefault. Read this
  • gdoron is supporting Monica
    gdoron is supporting Monica almost 12 years
    Read my comment to the OP. please read the linked answer. (I come here just now, so I don't know why you got downvoted, but it's wrong anyway.)
  • gdoron is supporting Monica
    gdoron is supporting Monica almost 12 years
    Regarding to the downvote, you might want to read the comments under my answer.