The AV
The AV

Reputation: 639

Jquery Slider issue in iPad which work fine in desktop and laptop

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

Answers (2)

The AV
The AV

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

Jitender
Jitender

Reputation: 7971

use focus instead of click that will work on iPad

Upvotes: 1

Related Questions