Himanshu Suthar
Himanshu Suthar

Reputation: 181

FlexSlider touch not working on iphone but working fine in andorid

Slider working fine on desktop browser and android devices but in iphone touch to move next/prec image not working. Though by clicking on next prev button is working fine.

HTML Code

<div class="flexslider">
    <ul class="slides">
    <li class="li0"><a href="javascript:void(0)"><img src="1.jpg"></img></a></li>
    <li class="li1"><a href="javascript:void(0)"><img src="9.jpg"></img></a></li>
    </ul>
    </div>

JQuery

 $(".flexslider").flexslider({
     animation: "slide",
     smoothHeight: true
 });

Upvotes: 0

Views: 603

Answers (1)

delta12
delta12

Reputation: 97

Parameter to add to your JQuery Flexslider call:

useCSS: false

Also visit this link issue discussed more through here!

Upvotes: 1

Related Questions