A Mohabbati
Results
2
comments of
A Mohabbati
I have same issue with mobile. tested in google chrome.
I fixed my problem by mimicking `mousedown` and `mouseup` events with `touchstart` and `touchend` events on target element. ``` $(".target").on('touchstart', function(){ $(this).trigger("mousedown"); }); $(".target").on('touchend', function(){ $(this).trigger("mouseup"); }); ```