I need to detect an element when it is dragged based on the clientx and clienty position of the touchmove event. In Chrome, the touchmove event is recognized and position is returned properly whereas the touchmove event is not recognized in Microsoft Edge.
<div id="ele" style="position:absolute; top:0px; left:0px; width:100px;height:100px;border:1px solid"></div>
$(document).ready(function() {
document.getElementById('ele').addEventListener('touchmove', function(e)
{
console.log('event triggered');
})
});
I get the event type as mousemove in Edge, but I want to get the touchmove event instead. Is there any way to do that?