#スマホの横スワイプをjQueryを使って検知する ネットで拾ったコードをベースに自分用に書き直したものを公開できる形に変更してます。 mainというidを持つ要素に対して横スワイプを行うとアラートが出るものです。 $(function() { $('#main').on('touchstart', onTouchStart); //指が触れたか検知 $('#main').on('touchmove', onTouchMove); //指が動いたか検知 $('#main').on('touchend', onTouchEnd); //指が離れたか検知 var direction, position; //スワイプ開始時の横方向の座標を格納 function onTouchStart(event) { position = getPosition(event); direction = ''