Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function toggleEditForm() {
- const form = document.getElementById('edit-form');
- const isHidden = window.getComputedStyle(form).display === 'none';
- form.style.display = isHidden ? 'block' : 'none';
- }
Advertisement
Add Comment
Please, Sign In to add comment