or
<script> var max_votes = 10; var sliderTotals = getSliderTotals(max_votes); function getSliderTotals(val){ return val; } function sliderOnSlide(e) { // the current value of the slider var orig_value = this.value(); // the new value var new_value = e.value; if(new_value > orig_value){ new_max_votes = (max_votes - new_value); } } function sliderOnChange(e) { //console.log("Slide :: new slide value is: " + e.value); } $(document).ready(function() { $(".slider").kendoSlider({ showButtons: false, change: sliderOnChange, slide: sliderOnSlide }); });</script>

<div id="tabstrip">
<ul>
<li>Table</li>
<li>Email Log</li>
<li>Top User</li>
</ul>
<!-- first tab -->
<div style="overflow:scroll;min-height:450px;">Please select dates and click Get Report.</div>
<!-- second tab -->
<div style="min-height:300px;">To send emails please click on Email Report.</div>
<!-- third tab -->
<div style="min-height:800px;">Please select dates and click get Report.</div>
</div>
...
