Skip to content

Instantly share code, notes, and snippets.

@AhmetEnesKCC
Created March 19, 2022 13:27
Show Gist options
  • Save AhmetEnesKCC/b07575627f237178348c31bb5b6f9beb to your computer and use it in GitHub Desktop.
Save AhmetEnesKCC/b07575627f237178348c31bb5b6f9beb to your computer and use it in GitHub Desktop.
Use in html
const setThemeRelatedToSystem = () => {
// ... rest of the function's code
}
// Plain JS
document.addEventListener("DOMContentLoad", () => {
setThemeRelatedToSystem();
})
// Jquery
$(() => {
setThemeRelatedToSystem();
})
// React JS
/* app.js or index.js */
useEffect(() => {
setThemeRelatedToSystem();
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment