Javascript Farenheit To Celsius Linking To Button Problem
I did the following.
Clicked on the button, Opened events, Selected event click, Selected action run javascript, and typed this in:
function convertToC() {
var fTempVal = parseFloat(Appery("mobiletextinput_10").val());
var cTempVal = (fTempVal - 32) * (5 / 9);
document.getElementById('cTemp').value = cTempVal;
return false;
}
I'm not sure why it is not working can anybody help?