John_Snow
John_Snow

Reputation: 62

jquery mouse move not working on touch devices

I 've got a mouse move event to scroll a div .But when when tried to access the functionality using a tab it does not work.How can i integrate the functionality onto the touch device.

$(document).ready(function(){
    $('#tim').on('mousemove', function(e) {
         //logic for moving the div
    });
});

Upvotes: 0

Views: 626

Answers (1)

prasanth
prasanth

Reputation: 22490

Try with touchmove

$(document).ready(function(){
    $('#tim').on('touchmove', function(e) {
         //logic for moving the div
    });
});

Upvotes: 1

Related Questions