jQuery(document).ready(function($) { $(document).on('input', 'input[type=range]', function() { var value = $(this).val(); $(this).closest('.range-slider').find('.current-value').text(value); }); });

Journal