Project:Block submitting twice
Version:6.x-1.x-dev
Component:Code
Category:bug report
Priority:critical
Assigned:voidberg
Status:needs review

Issue Summary

ive currently had a problem with my submit buttons and links doing nothing in ie, this persisted untill i disabled block submit at which point they worked fine

Comments

#1

me too.... ;-(

#2

Same - when 'disbale button' is on the submit never processes. When 'hide' is on - the revolving icon doesn't show (the text shows), but it does submit.

Either way, this is bugged in IE.

#3

subscribing

was anyone able to find a solution to this issue?

#4

Title:Problem with ie» Submit not working in IE

Hello,

I have confirmed that the submit buttons do not work on the user register and user login pages with Internet Explorer.
Can anyone please help with this issue?

Thank you!

#5

Assigned to:Anonymous» voidberg

#6

Version:6.x-1.0» 6.x-1.x-dev
Status:active» needs review

I got this working by doing the following:

Removing the duplicated .submit() function that is set inside of the first one:

      $(this).submit(function (e) {
        return false;
      });

And changing

      $(settings.block_submit_input_selectors, $(this)).attr('disabled', 'true').each(function (i) {

to

      $(settings.block_submit_input_selectors, $(this)).attr('disabled', 'disabled').each(function (i) {

I'd supply a patch, but our version appears to be fairly heavily customized in other areas :)