Sorry if this is a repeated question but I could not figure out to word this any better to perform a search. To further explain, I have a few disabled inputs with default values, pretty much inputs to display text. I have chose this method instead of just using <p> etc because I am making this for a client and would like to maybe in the future enable these fields to make them editable. Anyways, after calculating some data in javascript, the value of these input fields are changed (through javascript of course) but do not update the value on the screen. The value is updating because the calculations are coming out correctly, the HTML part is not updating however. If I need to explain more please comment, but below I will post the HTML and javascript code.
EDIT
To best describe this, here is an example of how my HTML appears in the web browser:
Inverter Service Fees $ 0.00 When I call the javascript function it changes the value of the input but the web browser still displays Inverter Service Fees $ 0.00 where I want it to display Inverter Service Fees $ (updated value) Hope this makes more sense!
HTML
<tr>
<td>Inverter Service Fees <i class='fa fa-info-circle fa-lg' title='Labor and gas are included.'></i></td>
<td align='right'>$ <input id='inputServiceFees' value='0.00' disabled></td>
</tr>
Javascript
inputServiceFees = parseFloat(document.getElementById('inputServiceFees').value, 10);
inputServiceFees = varServiceFees;
inputServiceFees.value = varServiceFees;
inputServiceFees.innerHTML = varServiceFees;