Skip to content

Instantly share code, notes, and snippets.

@kozaru
kozaru / meta.txt
Created April 22, 2014 08:04
IEに互換表示をさせないX-UA-Compatible
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
@kozaru
kozaru / touchevent.js
Last active August 29, 2015 13:59
jQuery-TouchEvent
+function ($) {
'use strict';
$(window).bind('touchstart', function() {
this.pageX = event.changedTouches[0].pageX; // X
this.pageY = event.changedTouches[0].pageY; // Y
console.log("start:",this.pageX,this.pageY);
});
$(window).bind('touchmove', function() {
this.pageX = event.changedTouches[0].pageX; // X