streams/view/tpl/contact_slider.tpl

13 lines
276 B
Smarty
Raw Normal View History

2012-07-16 05:44:05 +00:00
<script>
2015-07-14 10:46:40 +00:00
$(document).ready(function() {
2018-12-30 22:36:23 +00:00
$("#contact-range").on('input', function() { csliderUpdate(); });
$("#contact-range").on('change', function() { csliderUpdate(); });
function csliderUpdate() {
$(".range-value").html($("#contact-range").val());
2015-07-14 10:46:40 +00:00
}
2018-12-30 22:36:23 +00:00
});
2012-07-16 05:44:05 +00:00
</script>