script.js 177 Bytes
Newer Older
chenyuanjie committed
1 2 3 4 5 6
const loading = document.getElementById('loading');
const form = document.querySelector('form');

form.addEventListener('submit', () => {
  loading.style.display = 'block';
});