Skip to content

Instantly share code, notes, and snippets.

@visb
Created October 10, 2014 18:54
Show Gist options
  • Select an option

  • Save visb/3751c475690cf07c1840 to your computer and use it in GitHub Desktop.

Select an option

Save visb/3751c475690cf07c1840 to your computer and use it in GitHub Desktop.
drag drop prototype
var target = document.getElementById('#myDraggableElement');
target.onmousedow = function(){
// start dragging
window.onmousemove = function(){
// move window
};
window.onmouseup = function(){
// stop dragging
// unbind window.onmousemove
// unbind window.onmouseup
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment