Skip to content

Instantly share code, notes, and snippets.

@AleksandrChukhray
Last active July 7, 2020 15:50
Show Gist options
  • Select an option

  • Save AleksandrChukhray/89518afba06be54cf0d1abe90308775c to your computer and use it in GitHub Desktop.

Select an option

Save AleksandrChukhray/89518afba06be54cf0d1abe90308775c to your computer and use it in GitHub Desktop.
Is draggeble
function isDraggable() {
var div = document.createElement('div');
return ('draggable' in div) || ('ondragstart' in div && 'ondrop' in div)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment