1

I am using a jquery slider that automatically adjusts so the two sliders only ever show 100%.

All works well I just need to display the two numbers, is this possible?

The code I have is:

<script type="text/javascript">
    $(function () {
        $('div.basicLinked').slider().linkedSliders();
        $('div.basicLinked:first').slider('value', 50);
    });
</script>

This is then displayed using:

<div class="basicLinked"></div>
<div class="basicLinked"></div>
4

1 に答える 1

0

My guess:

$('div.basicLinked:first').slider('value')
$('div.basicLinked:last').slider('value')

Is that what you need?

Try to explain your problem better.

于 2012-07-03T14:59:56.070 に答える