Canman2005 Posted August 25, 2008 Share Posted August 25, 2008 Hi all I have the following javascript maths being actioned from the input of a html form if (document.myform.fieldr.value && document.myform.fieldw.value && document.myform.fieldjj.value && document.myform.fieldkk.value) { fieldrval = document.myform.fieldr.value fieldwval = document.myform.fieldw.value fieldjjval = document.myform.fieldjj.value fieldkkval = document.myform.fieldkk.value calc1 = fieldwval - fieldrval calc2 = calc1 / fieldwval calc3 = fieldjjval - fieldkkval calc4 = calc3 / fieldjjval document.myform.fieldy.value=calc2.calc4 } At the moment this wont work because of the full stop between calc2.calc4 on the last line of code How can I output the value with a full stop in between calc2 and calc4? Hope that makes sense Thanks Dave Link to comment https://forums.phpfreaks.com/topic/121191-solved-javascript-maths-using-a-full-stop/ Share on other sites More sharing options...
Canman2005 Posted August 25, 2008 Author Share Posted August 25, 2008 any ideas anyone? Link to comment https://forums.phpfreaks.com/topic/121191-solved-javascript-maths-using-a-full-stop/#findComment-624854 Share on other sites More sharing options...
Mchl Posted August 25, 2008 Share Posted August 25, 2008 document.myform.fieldy.value=calc2+"."+calc4 Link to comment https://forums.phpfreaks.com/topic/121191-solved-javascript-maths-using-a-full-stop/#findComment-624856 Share on other sites More sharing options...
Canman2005 Posted August 25, 2008 Author Share Posted August 25, 2008 thanks mate Link to comment https://forums.phpfreaks.com/topic/121191-solved-javascript-maths-using-a-full-stop/#findComment-624884 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.