Hey everyone,
Simple question, but I can't figure it out.
What is the launcher syntax I need to perform the following function:
<input type="text" id="value1" />
<input type="text" id="value2" />
<input type="text" id="value3" />
<input type="text" id="total" />
I want to perform [(value1 * value2) + value3] and have the result rounded to two decimal places (forced, so even if the result is a round integer, it should append ".00") and displayed in total. And I need this to happen on a keyup action for any of the value fields.
Should be very straightforward, but I just can't figure it out.
Help please?
Thanks