Skip to content

Instantly share code, notes, and snippets.

@takkkun
Created January 30, 2013 11:35
Show Gist options
  • Save takkkun/4672690 to your computer and use it in GitHub Desktop.
Save takkkun/4672690 to your computer and use it in GitHub Desktop.
(function($) {
$(document).on('mousemove', function mousemove() {
// 動かしたり
});
$(document).on('mouseup', function mouseup() {
$(this).off('mouseup', mouseup); // こっちはOK
$(this).off('mousemove', mousemove); // こっちが参照出来ない
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment