You can add something like this to the source of a slider question.
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){// Identify this questionvar thisQuestion = $('#question'+{QID}+'');// Set the slider maximums
$('.ui-slider:eq(0)', thisQuestion).slider('option','max',45);// First slider
$('.ui-slider:eq(1)', thisQuestion).slider('option','max',60);// Second slider
$('.ui-slider:eq(2)', thisQuestion).slider('option','max',80);// Third slider// Adjust the "Slider Max" displayed
$('.ui-slider', thisQuestion).each(function(i){
$('.slider-showmax', this).text($(this).slider('option','max'));});});</script>
.
Cheers,
Tony Partner Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.