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 Quote Link to comment Share on other sites More sharing options...
Canman2005 Posted August 25, 2008 Author Share Posted August 25, 2008 any ideas anyone? Quote Link to comment Share on other sites More sharing options...
Mchl Posted August 25, 2008 Share Posted August 25, 2008 document.myform.fieldy.value=calc2+"."+calc4 Quote Link to comment Share on other sites More sharing options...
Canman2005 Posted August 25, 2008 Author Share Posted August 25, 2008 thanks mate Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.