Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created October 25, 2014 07:50
Show Gist options
  • Save oguzhanaslan/4c74d0e32432e100e76f to your computer and use it in GitHub Desktop.
Save oguzhanaslan/4c74d0e32432e100e76f to your computer and use it in GitHub Desktop.
Stop Visitors Dragging Images To Copy
function stopImageDrag(){
$("img").bind("dragstart",function(e){
return false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment