Blaze your Trail

Utah Tech at a Glance

#1 Most Affordable University in Utah

23 Average Class Size

90% Of Students Offered Scholarships, Grants, or other Financial Aid

84% Acceptance Rate to Medical School

290+ Academic Programs

300+ Days of Sunshine

Find my Program

Plot your Course

UT Online

Join Utah's most affordable online university classes from anywhere

Follow us on social media

Stay updated on university news, events, and campus life

Upcoming Events

View All Events
// Function to add the alt attribute to images with the specified src function addAltToImages() { const images = document.querySelectorAll('img'); images.forEach(img => { if (img.src.includes("https://ad.ipredictive.com/d/track/event")) { img.setAttribute('alt', ''); } }); } // Create a MutationObserver to watch for changes in the DOM const observer = new MutationObserver(mutations => { mutations.forEach(mutation => { mutation.addedNodes.forEach(node => { // Check if the added node is an img element if (node.tagName === 'IMG') { addAltToImages(); // Call the function to add alt attribute } else if (node.querySelectorAll) { // If it's not an img, check for any img elements inside it const imgs = node.querySelectorAll('img'); imgs.forEach(img => addAltToImages()); } }); }); }); // Start observing the document body for child node additions observer.observe(document.body, { childList: true, subtree: true }); // Initial call to handle any existing images addAltToImages();