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...