// Inserts dropdown character - by Skyler document.addEventListener('DOMContentLoaded', function () { // Select all dropdown `li` elements within the navigation menu document.querySelectorAll('nav#mainNav ul.navbar-nav li.dropdown').forEach(function (dropdown) { const p = document.createElement('p'); // Create the p element p.className = 'fa fa-chevron-down menuIcon'; // Add Font Awesome classes p.style.marginTop = '0px'; p.style.marginLeft = '5px'; // Optional: Add spacing p.style.marginBottom = '0px'; p.style.marginRight = '0px'; dropdown.querySelector('a').appendChild(p); // Append the span to the element }); });