Skip to content Skip to sidebar Skip to footer

Jqtouch - Links In Li Not Working After Scrolling

I have a sorted list using JQTouch. The list contains about 20 li-elements containing different links. The first li's that are on the screen without scrolling are working just fine

Solution 1:

In jqtouch.min.js file

in the 'handleTouch' function there is:

startX = event.changedTouches[0].clientX,
startY = event.changedTouches[0].clientY,

these lines need to change to:

startX = event.changedTouches[0].pageX,
startY = event.changedTouches[0].pageY,

Please ref this link https://github.com/senchalabs/jQTouch/issues/297

Post a Comment for "Jqtouch - Links In Li Not Working After Scrolling"