Simple Calculation Script
Check out the code behind the Calculate Now button (select button, open Events tab).
The code look like this:
code
var input = Tiggr('baseunit').val();
var from = Tiggr('convertfrom').val();
var to = Tiggr('convertto').val();
var total = input * 0.083;
alert (input + " inches is "+ total + " feet" )
/code
Hope this helps...