Monday, October 22, 2012

Android Touch Effect From Jquery


It effects Good

if you want to touch from mobile web

$('.ccc').bind('touchstart', function() {
$(this).css("background-color","blue");
});
$('.ccc').bind('touchend', function() {
$(this).css("background-color","yellow");
});

No comments:

Post a Comment