How can I easily calculate the value in the form builder.
I have seen a post http://www.coffeecup.com/forums/web-for … culations/
This is very old post. Has CC any updated calculation field?
It is very very important.......
I have seen a post http://www.coffeecup.com/forums/web-for … culations/
This is very old post. Has CC any updated calculation field?
It is very very important.......
Try this.
http://www.coffeecup.com/forums/web-for … post214509

http://www.coffeecup.com/forums/web-for … post214509
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
Thanks a lot. Your example is working well but when I try in my form with following script is does not work.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script>
<script>$(document).ready(function(){
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = (valone + valtwo);
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
I cannot understand where is the problem. Would you help me?
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script>
<script>$(document).ready(function(){
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = (valone + valtwo);
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
I cannot understand where is the problem. Would you help me?
Link to your form?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
Hi,
Here is link: http://pdfland-me.coffeecup.com/forms/r … ve%20form/
So rough form. Just I was testing.
Here is link: http://pdfland-me.coffeecup.com/forms/r … ve%20form/
So rough form. Just I was testing.
Mehedee, I do realize that you are trying to get the total before hitting the submit button. But do you really need that? It's so much easier to let the form do the work. If your customer does not like the total after hitting the submit button then when the paypal button comes up, there is an option to return to the form. Or are you not using paypal? And if you modify the code outside the form then every time you change something on the form you'll have to add your modification again.
If you want to see a simple example, I have one at http://gunsmoke.me/formtest/pricemultiplier/
If you want to see a simple example, I have one at http://gunsmoke.me/formtest/pricemultiplier/
Graphics for the web, email, blogs and more!
-------------------------------------
https://sadduck.com
-------------------------------------
https://sadduck.com
There's an error in your code.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script><script>$(document).ready(function(){
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = ((valone) + (valtwo));
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = ((valone) + (valtwo));
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
Hi,
I have removed <script> . Nothing happen
Again I was testing your script. At first pasted your script in the html, working well. But when I changed to
Nothing happen. Any problem here?
I have removed <script> . Nothing happen
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>$(document).ready(function(){
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = ((valone) + (valtwo));
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
<script>$(document).ready(function(){
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = ((valone) + (valtwo));
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
Again I was testing your script. At first pasted your script in the html, working well. But when I changed to
var total = ((valone) + (valtwo));
Nothing happen. Any problem here?
It's still there for me.
http://pdfland-me.coffeecup.com/forms/r … ve%20form/
http://pdfland-me.coffeecup.com/forms/r … ve%20form/
<script><script>$(document).ready(function(){
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = ((valone) + (valtwo));
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
$('#item17_number_1').keyup(function(){
var valone = $('#item17_number_1').val();
var valtwo = 5;
var total = ((valone) + (valtwo));
$('#item18_number_1').val(total.toFixed(2));
});
});</script>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
I did not update online form. I was testing in local form. Here is updated
http://pdfland-me.coffeecup.com/forms/calculation/
I copied your script and then changed total formula. Then it is not working.
Thanks a lot for your continuous help.
http://pdfland-me.coffeecup.com/forms/calculation/
I copied your script and then changed total formula. Then it is not working.
Thanks a lot for your continuous help.
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.