Skip to content

Instantly share code, notes, and snippets.

@swahaniroy
Created May 26, 2022 15:09
Show Gist options
  • Save swahaniroy/85fa0035ae008ff046d4eb7b8d31b04d to your computer and use it in GitHub Desktop.
Save swahaniroy/85fa0035ae008ff046d4eb7b8d31b04d to your computer and use it in GitHub Desktop.
The Util.js File
const loading = document.getElementById('loading');
function hideLoading() {
loading.classList.add('loading--hide');
}
function showLoading() {
loading.classList.remove('loading--hide');
loading.classList.add('loading--active');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment