Is there a way to detect the touchmove event properly in Microsoft Edge when an element is dragged, similar to how it works in Chrome with clientx and clienty positions?
<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');
})
});
In Edge, I am currently getting the mousemove event instead of touchmove. How can I ensure that touchmove is recognized in Microsoft Edge as well?