Answer is no, there is no default way.
My workaround is below. After looking at a bunch of solutions and noticing how incosistent they are across browsers devices decided that it's best to just output the selection in real time in a div container.
Slider HTML:
<div class="form-group mt-4 text-center">
<label for="price"><h4>Minimum price</h4></label>
<div class="price">500000</div>
<input type="range" class="custom-range" min="20000" max="1000000" step="10000" id="customRange3" name="Price" value="500000" style="width: 100%">
This will output in real time the currently selected range inside a div contained (requires jquery)
<script>
$( document ).ready(function() {
$('#customRange3').on('input', function(){
v = $('#customRange3').val();
console.log(v);
$('div.price').text(v);
});
});
</script>
Now, as you slide the tracker up and down it will update the number below 'Result'
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…