Material Design Ripple effect with jQuery. It uses only the touch events. Watch demos!
// init
$('body').ripple({
selector: '.touch-ripple',
excludeSelector: '.no-touch-ripple'
});
// destroy
$('body').ripple('destroy');
<div class="touch-ripple">Touch me!</div>
<div class="touch-ripple" data-touch-ripple-delay="1000">Delay 1000ms</div>