Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

16 строки
497B

  1. <script>
  2. function openTab(evt, tabName) {
  3. var i, x, tablinks;
  4. x = document.getElementsByClassName("content-tab");
  5. for (i = 0; i < x.length; i++) {
  6. x[i].style.display = "none";
  7. }
  8. tablinks = document.getElementsByClassName("tab");
  9. for (i = 0; i < x.length; i++) {
  10. $(tablinks[i]).removeClass("is-active");
  11. }
  12. document.getElementById(tabName).style.display = "block";
  13. $(evt.currentTarget).addClass("is-active");
  14. }
  15. </script>