// boton fixed document.addEventListener('DOMContentLoaded', function() { var btnFixed = document.querySelector('.btn-admission-interna'); var seccionDestino = document.querySelector('#id-form'); btnFixed.addEventListener('click', function() { var posicionSeccion = seccionDestino.getBoundingClientRect().top + window.scrollY; window.scrollTo({ top: posicionSeccion - 55, behavior: 'smooth' }); }); }); // boton fixed // accordeon// function colorAndIcon() { var allItems = document.querySelectorAll("#accordion .card-header"); console.log(allItems) allItems.forEach(function (item) { item.addEventListener('click', function () { var icon = item.querySelector('.icon-variable'); var title = item.querySelector('.title'); console.log(title) allItems.forEach(function (otherItem) { if (otherItem !== item) { otherItem.classList.remove('text-red-UPC'); otherItem.querySelector('.title').classList.remove('text-red-UPC'); otherItem.querySelector('.icon-variable').src="/assets4//icon-plus.png"; } }); if (title.classList.contains('text-red-UPC')) { item.classList.remove('text-red-UPC'); title.classList.remove('text-red-UPC'); icon.src="/assets4//icon-plus.png"; } else { item.classList.add('text-red-UPC'); title.classList.add('text-red-UPC'); icon.src="/assets4//icon-x.png"; } }); }); } colorAndIcon(); // fin accordeon//