Reputation: 62
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