JQuery Lightbox Prev / Next buttons not displaying on iPad / iPod

I design a site and use jQuery lightbox 0.5 .

On the equipment pages, I use lightbox as a gallery. Everything works on the computer, but on the iPad / iPod the Prev / Next buttons are not displayed.

I know that it uses the jQuery routine to display them on :mouseover , but there is no mouse on these devices. Pressing the right side of the button really works, but I would like the buttons to be there too.

code:

 <script type="text/javascript"> $(function() { $('a.StockNumber').lightBox(); }); </script> 

Where StockNumber is the stock number of the unit.

+4
source share
1 answer

Try adding a fixed navigation option:

 $('a.StockNumber').lightBox({ fixedNavigation: true }); 
+1
source

Source: https://habr.com/ru/post/1432354/


All Articles