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.
source share