Reputation: 639
I have used one slider which work fine in laptop and desktop but when I open in iPad we lost that smoothness and come out with some jurk, I want same smooth effect as Desktop.
Please see the code in this link
!! Quick response is appreciable !!
Upvotes: 0
Views: 682
Reputation: 639
wow, I just changed different style and its work perfect now
$(document).ready(function(){
$(".hide").click(function(){
$(".pane").slideToggle(slow);
});
$("#togg a").click(function () {
$("#togg a").toggle();
});
})
Upvotes: 0