Title: Fake loading progress signs
Last modified: February 18, 2021

---

# Fake loading progress signs

 *  Resolved [Bakhshi](https://wordpress.org/support/users/bakhshi/)
 * (@bakhshi)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/)
 * Hello
    I enabled the “calculation in progress” option for all of my buttons, 
   but the loading progress signs are not displayed, and I know it may be related
   to my server calling and my design procedure in these calculations. I am going
   to make a fake loading progress signs that are not associated with the processing,
   that means **when a user clicks on a computational button, the loading progress
   sign is displayed about 10 second without any reason**.
 * Is it possible to make the loading progress sign with a regular time for computational
   buttons?
 * Thanks for your supporting
    -  This topic was modified 5 years, 1 month ago by [Bakhshi](https://wordpress.org/support/users/bakhshi/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ffake-loading-progress-signs%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14069979)
 * Hello [@bakhshi](https://wordpress.org/support/users/bakhshi/)
 * If you want to display the loading progress for 10 seconds by pressing a button,
   you can enter the following piece of code as its onclick event:
 *     ```
       jQuery('#fbuilder').append('<div class="cff-processing-form"></div>');setTimeout(function(){jQuery('.cff-processing-form').remove()}, 10000);
       ```
   
 * Best regards.
 *  Thread Starter [Bakhshi](https://wordpress.org/support/users/bakhshi/)
 * (@bakhshi)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14070852)
 * Should I disable **“display calculation in progress indicator”** option?
 * I have a piece of code in the OnClick event box:
    `jQuery(this.form).valid();`
 * I do not know, how should I combine with your code?
 * Thanks in advance
    -  This reply was modified 5 years, 1 month ago by [Bakhshi](https://wordpress.org/support/users/bakhshi/).
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14071035)
 * Hello [@bakhshi](https://wordpress.org/support/users/bakhshi/)
 * You can implement something similar to:
 *     ```
       if(jQuery(this.form).valid()){jQuery('#fbuilder').append('<div class="cff-processing-form"></div>');setTimeout(function(){jQuery('.cff-processing-form').remove()}, 10000);}
       ```
   
 * Best regards.
 *  Thread Starter [Bakhshi](https://wordpress.org/support/users/bakhshi/)
 * (@bakhshi)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14071167)
 * Actually before asking my last question, I had tested it with if condition, but
   it didnot work.
 * [link](https://ventcal.com/fa/3514-2/)
 * calculation field: fieldname110
    -  This reply was modified 5 years, 1 month ago by [Bakhshi](https://wordpress.org/support/users/bakhshi/).
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14071274)
 * Hello [@bakhshi](https://wordpress.org/support/users/bakhshi/)
 * You have assigned two onclick events to the fieldname110 field, one of them through
   its settings and another through an “HTML Content” field. The last onclick event
   calls the `.off` method to unsubscribe the onclick events.
 * Best regards.
 *  Thread Starter [Bakhshi](https://wordpress.org/support/users/bakhshi/)
 * (@bakhshi)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14074332)
 * Thanks to your advice!
    I cannot set `.off` method to unsubscribe the onclick
   events. because if I unsubscribed the onclick events, my calculate button wouldnot
   depend on capthca code.
 * by the way, I have used OnMouseDown event option, I pasted the piece code in 
   the OnMouseDown event and it works for one form.
    `jQuery('#fbuilder').append('
   <div class="cff-processing-form"></div>');setTimeout(function(){jQuery('.cff-
   processing-form').remove()}, 10000);`
 * sorry, I am having a problem with that, actually it works for one form: [page link with one form](https://ventcal.com/fa/%D9%86%D8%B1%D9%85-%D8%A7%D9%81%D8%B2%D8%A7%D8%B1-%D9%85%D8%AD%D8%A7%D8%B3%D8%A8%D9%87-%D9%88-%D8%A7%D9%86%D8%AA%D8%AE%D8%A7%D8%A8-%DA%A9%D9%88%D9%84%D8%B1-%D8%A2%D8%A8%DB%8C/)
 * but I have two formes in one page with this HTML code:
 *     ```
       <div id="first_form">[CP_CALCULATED_FIELDS id="53"]</div>
       <div id="second_form" style="display: none;">[CP_CALCULATED_FIELDS id="54"]</div>
       ```
   
 * I enabled loading progress and used your piece code in OnMouseDown event field
   for both of them, but I do not know why it works for only first form and neither
   does second form?! [page link with two formes](https://ventcal.com/fa/%d9%86%d8%b1%d9%85-%d8%a7%d9%81%d8%b2%d8%a7%d8%b1-%d9%85%d8%ad%d8%a7%d8%b3%d8%a8%d9%87-%d8%aa%d8%b9%d8%af%d8%a7%d8%af-%d9%be%d8%b1%d9%87-%d8%b1%d8%a7%d8%af%db%8c%d8%a7%d8%aa%d9%88%d8%b1/)
 * Thank you for your help.
    -  This reply was modified 5 years, 1 month ago by [Bakhshi](https://wordpress.org/support/users/bakhshi/).
 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14074519)
 * Hello [@bakhshi](https://wordpress.org/support/users/bakhshi/)
 * In this case the pieces of code to use would be similar to:
 * For the first form:
 *     ```
       if(jQuery(this.form).valid()){jQuery('#first_form #fbuilder').append('<div class="cff-processing-form"></div>');setTimeout(function(){jQuery('.cff-processing-form').remove()}, 10000);}
       ```
   
 * For the second form:
 *     ```
       if(jQuery(this.form).valid()){jQuery('#second_form #fbuilder').append('<div class="cff-processing-form"></div>');setTimeout(function(){jQuery('.cff-processing-form').remove()}, 10000);}
       ```
   
 * Note the use of selectors `'#first_form #fbuilder'` and `'#second_form #fbuilder'`
   respectively.
 * Best regards.
 *  Thread Starter [Bakhshi](https://wordpress.org/support/users/bakhshi/)
 * (@bakhshi)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14074696)
 * Thank you very much indeed

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Fake loading progress signs’ is closed to new replies.

 * ![](https://ps.w.org/calculated-fields-form/assets/icon-256x256.jpg?rev=1734377)
 * [Calculated Fields Form](https://wordpress.org/plugins/calculated-fields-form/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/calculated-fields-form/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/calculated-fields-form/)
 * [Active Topics](https://wordpress.org/support/plugin/calculated-fields-form/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/calculated-fields-form/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/calculated-fields-form/reviews/)

## Tags

 * [loading](https://wordpress.org/support/topic-tag/loading/)
 * [progress](https://wordpress.org/support/topic-tag/progress/)
 * [signs](https://wordpress.org/support/topic-tag/signs/)

 * 8 replies
 * 2 participants
 * Last reply from: [Bakhshi](https://wordpress.org/support/users/bakhshi/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/fake-loading-progress-signs/#post-14074696)
 * Status: resolved