Skip to content

Instantly share code, notes, and snippets.

View restlessmedia's full-sized avatar
🎯
Focusing

Phil Cooper restlessmedia

🎯
Focusing
View GitHub Profile
@yuanchuan
yuanchuan / gist:1330150
Created November 1, 2011 08:27
simple draggable using jquery
/**
* usage:
* $('div').draggable();
* $('*').draggable();
*/
$.fn.draggable = function() {
var $document = $(document)
, mouse = { update: function(e) {this.x = e.pageX; this.y = e.pageY;} };