jQuery rangeslider input field name - maikelbos0/VDT GitHub Wiki
By default, jQuery-rangeslider creates input fields without a name. It is easy to set the name by using the data-field-name
attribute on the main element of your slider. The below example will generate a hidden input field with the name example-field-name
.
<div id="example-slider" data-field-name="example-field-name">
</div>
<script type="text/javascript">
$('#example-slider').rangeslider();
</script>