Skip Navigation

[Résolu] I am trying to disable the submit button via javascript

Ce fil est résolu. Voici une description du problème et la solution proposée.

Problem:

The issue here is that the user wanted to disable the submit button on his CRED form using jQuery.

Solution:
To do this please use the code below. Add it to your js section of your CRED form and it should disable the button.

jQuery( document ).ready(function() {
console.log('document is ready');
setTimeout(function() {
         jQuery('.finishprofilebutton').attr("disabled", "disabled") 
    }, 2000);
 
});

Relevant Documentation:

This support ticket is created Il y a 6 années et 8 mois. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Aucun de nos assistants n'est disponible aujourd'hui sur le forum Jeu d'outils. Veuillez créer un ticket, et nous nous le traiterons dès notre prochaine connexion. Merci de votre compréhension.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 14:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Jamaica (GMT-05:00)

Ce sujet contient 3 réponses, a 2 voix.

Dernière mise à jour par Shane Il y a 6 années et 8 mois.

Assisté par: Shane.

Auteur
Publications
#628590

Hi,

I have some javascript code somewhere else on the page, which checks a few things and is supposed to disable the submit button of one of my CRED forms that is being displayed.

jQuery(document).ready does not seem to cut it though, as something else takes the disabled state out. I tried using the javascript panel inside the form in question, add a custom class to the submit button and target it that way, but no dice.

I have no problem executing the javascript code within my CRED form, but right now I had to bind it to mouseenter. This means the button changes states only when the user moves the mouse. I can't have that.

What is the javascript trigger where if I type:

jQuery('.finishprofilebutton').attr("disabled", "disabled");

It stays disabled.

#628785

Shane
Supporter

Les langues: Anglais (English )

Fuseau horaire: America/Jamaica (GMT-05:00)

Hi Adrian,

Thank you for contacting our support forum.

Would you mind providing me with a link to the page so that I can check on this issue for you ?

Thanks,
Shane

#628910

Hi,

Unfortunately that is part of a locally developed project and behind a login form.

You can however reproduce this easy by creating a CRED form and adding the

jQuery('.finishprofilebutton').attr("disabled", "disabled")

code in the javascript section. What I noticed is that it sets it to disabled, but then the field gets re-enabled. So something is running after document load to ensure that the submit button stays active.

The finishprofilebutton class is a class I added to the Submit button, since the ID is randomly generated for some odd reason.

#628953

Shane
Supporter

Les langues: Anglais (English )

Fuseau horaire: America/Jamaica (GMT-05:00)

Hi Adrian,

Try setting a delay on the script running. Like this.

jQuery( document ).ready(function() {
console.log('document is ready');
setTimeout(function() {
         jQuery('.finishprofilebutton').attr("disabled", "disabled")
         console.log('button is disabled');

    }, 2000);

});

I tested this and it works for me.

Thanks,
Shane