I have
oninput="
price_<?php echo esc_attr( $range_slider_id ); ?>.value=parseFloat(<?php echo esc_attr( $range_price_id ); ?>)*parseFloat(<?php echo esc_attr( $range_slider_id ); ?>.value); "
how to round price_~.value two decimal places?
I have on output:
<output id="price_range_5e5851cd67084" for="range_5e5851cd67084">43.199999999999996</output>
I have tried to add .toFixed(2) and .round(2) .. but it doesn’t help…
3
Answers
found solution from this topic Why can't I use toFixed on an HTML input object's value? the final result:
use
toFixed(2)
such as
If it is just to display the number you can use:
You can also replace ‘en’ with your preferred locale
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Locale