Skip to content

Instantly share code, notes, and snippets.

@igorvolnyi
Created March 6, 2022 17:02
Show Gist options
  • Save igorvolnyi/7d417c4ab02fe52c090826ebd7a832fa to your computer and use it in GitHub Desktop.
Save igorvolnyi/7d417c4ab02fe52c090826ebd7a832fa to your computer and use it in GitHub Desktop.
Replace all http links to https
Array.from(document.querySelectorAll('a[href^="http://imagetwist.com"]'))
.forEach(link => link.setAttribute('href', link.getAttribute('href').replace(/^http/, 'https')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment