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

cardentey’s picture

me too.... ;-(

cerup’s picture

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.

YK85’s picture

subscribing

was anyone able to find a solution to this issue?

YK85’s picture

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!

voidberg’s picture

Assigned: Unassigned » voidberg
alan d.’s picture

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 :)

mjade1138’s picture

I can confirm this issue as well. There should really be a warning on the module page that it doesn't work in IE!

greggles’s picture

Status: Needs review » Needs work

The suggested change in #6 no longer matches the code, so marking needs work.

Can anyone confirm if this is still a problem?

greggles’s picture

It would be good to know which version of IE is having problems. I tested the 7.x-1.x-dev version (with #1813382: Finish 7.x port, make stable release) and forms submit fine.

alan d.’s picture

@greggles I think that almost all IE versions on D6, too long ago to remember; I haven't looked at D7 at all...