jQuery
サンプルではaタグを指定。
PCのときと同じ動きをしてくれるというもの。
※ タッチ = touchstart
$(function(){
$( 'a') // aタグを指定
.bind( 'touchstart', function(){ // タッチするとhoverが付与される
$( this ).addClass( 'hover' );
}).bind( 'touchend', function(){ // タッチが離れるとhoverが解除される
$( this ).removeClass( 'hover' );
});
});