der_robert

Untitled

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