This tutorial is only for those who are trying to add calculator fields like where user will put value in one field and some calculation will be done automatically and result will be viewable in other single or multiple fields in contact form.
This technique I have shared is for advance level users who have knowledge of Jquery and using Contact form 7 . If you are new or facing problem to implement such type of fields, feel free to message me in comments section or take my personal help in my fiverr profile.
Here is the technique
1. At first put your calculator fields where you want to do or show calculation

2. Use Jquery code something like this

I have shared you the Jquery auto calculation code for contact form 7 below
<script>
jQuery(document).ready(function(){
//alert("Welcome");
var ce;
var ps;
var ar;
jQuery("#ce").on("change", function() {
ce= this.value ;
ps=(((ce/30))/5)*1.2;
ar=(((ps*1000)/250)*(0.941*1.65)*1.6);
jQuery("#ps").val(ps.toFixed());
jQuery("#ar").val(ar.toFixed());
});
});
</script>
3. Result

If you have any issue feel free to ask me question here in comments section
OR
Pay me some, I will help you for CSS Issue Personally CLICK HERE….
Like this:
Like Loading...
Recent Comments