Slider problem
Slider problem
I have the following situation:
<a id="sliderToggle" href="#">show slider</a>
<div id="sliderWrap" style="display: hidden">
<div id='sliderTest'></div>
</div>
$(document).ready( function() {
$("#sliderToggle").bind("click", function(e) {e.preventDefault(); $
("#sliderWrap").slideDown()};
$("#sliderTest").slider({steps: 10});
});
When I click the show slider link, the slider appears and everything
seems fine. But the slider itself doesn't work - I can't move the
handle.
Any idea?