views:

92

answers:

0

I am using mousemove events to change the background color of the text

$("span").mousemove(function(){
    $(this).css("background-color","yellow");
});

but when I tried it with touchmove event for iPhone application, it was highlighting the first span tag, but not sequentially.