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

    (@codepeople)

    Hi,

    I’m sorry for the delay in respond to your ticket, I’ve not received the notification about it.

    I have checked your form, that includes 165 fields. The majority of them are “calculated fields”, whose equations are parsed and evaluated each time the value of a field is modified, however there are different ways to optimize it.

    First, you should be sure all calculated fields are needed, furthermore, you can replace the majority of “calculated fields” by numeric fields, assigning to all of them a class name to identify the field (a different class name for each field to identify), for example, a valid class name could be: myclass, and then insert an unique “calculated field”, to evaluate all mathematic operations, and assign the values to the corresponding fields, from the unique equation, as follows:

    jQuery( '.myclass input' ).val( 'the calculated value' );

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Speed is Very Slow’ is closed to new replies.