• Resolved Bakhshi

    (@bakhshi)


    Hello

    how can add processing style to the button?

    For example, when the button is pressed, the processing style is displayed.

    like Submit button

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @bakhshi

    If you want to apply a specific style to the form, when the button is pressed, for example, the class name: processing, the code to include in the onclick event of button would be similar to:

    
    jQuery(this).closest('#fbuilder').addClass('processing');
    

    and if you want to remove this class name, after the equations be evaluated, as part of one of the equations you can include the code:

    jQuery('.processing').removeClass('.ignore');

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘processing style after clicke button’ is closed to new replies.