Created
October 10, 2014 18:54
-
-
Save visb/3751c475690cf07c1840 to your computer and use it in GitHub Desktop.
drag drop prototype
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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