Skip to content

Instantly share code, notes, and snippets.

View dino213dz's full-sized avatar
🤖
La tête dans les codes

Allaeddine dino213dz

🤖
La tête dans les codes
View GitHub Profile
@Razoxane
Razoxane / reloadCSS.js
Created July 28, 2017 23:48 — forked from kdzwinel/reloadCSS.js
Reload CSS files without reloading the page
function reloadCSS() {
const links = document.getElementsByTagName('link');
Array.from(links)
.filter(link => link.rel.toLowerCase() === 'stylesheet' && link.href)
.forEach(link => {
const url = new URL(link.href, location.href);
url.searchParams.set('forceReload', Date.now());
link.href = url.href;
});