«ميدياويكي:Common.js»: الفرق بين المراجعتين
من Sudan Memory
سطر ١: | سطر ١: | ||
/* الجافاسكريبت الموضوع هنا سيتم تحميله لكل المستخدمين مع كل تحميل للصفحة. */ | /* الجافاسكريبت الموضوع هنا سيتم تحميله لكل المستخدمين مع كل تحميل للصفحة. */ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
$(function () { | $(function () { |
مراجعة ١٣:٢٩، ١٩ فبراير ٢٠٢٤
/* الجافاسكريبت الموضوع هنا سيتم تحميله لكل المستخدمين مع كل تحميل للصفحة. */ $(function () { //var poems = document.querySelectorAll('.poem'); // Find all div elements with the class 'poem' //poems.forEach(function(poem) { // Loop through each poem element and format it // var vWidth = poem.getAttribute('vWidth') || 350; // Verse width, default is for quads //poem.innerHTML = parsePoem(poem.innerText, vWidth); //}); var toggler = document.getElementsByClassName("treeBranch"); var i; for (i = 0; i < toggler.length; i++) { toggler[i].addEventListener("click", function() { this.parentElement.querySelector(".treeBranch-nested").classList.toggle("treeBranch-active"); this.classList.toggle("treeBranch-down"); }); } }());