Skip to content

Instantly share code, notes, and snippets.

@Maoyeedy
Created June 8, 2023 08:30
Show Gist options
  • Save Maoyeedy/4e941548ad630dbe08368824af3a47be to your computer and use it in GitHub Desktop.
Save Maoyeedy/4e941548ad630dbe08368824af3a47be to your computer and use it in GitHub Desktop.
const img = document.querySelectorAll('img');
img.forEach((image) => {
image.draggable = false;
});
const anchors = document.querySelectorAll('a');
anchors.forEach((anchor) => {
anchor.target = '_blank';
anchor.rel = 'noopener';
anchor.draggable = false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment