Skip to content

Instantly share code, notes, and snippets.

@ydrea
Created August 4, 2025 11:20
Show Gist options
  • Save ydrea/7686b7b163f4c118f1b5bd9573fbd413 to your computer and use it in GitHub Desktop.
Save ydrea/7686b7b163f4c118f1b5bd9573fbd413 to your computer and use it in GitHub Desktop.
document.addEventListener("DOMContentLoaded", function() {
var links = document.querySelectorAll('a');
for (var i = 0; i < links.length; i++) {
var link = links[i];
if (link.href.indexOf('http://andrija-vranic.from.hr') === 0) {
link.href = link.href.replace('http://', 'https://');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment