Comments Previsha started the conversationAugust 3, 2023 at 7:58amHi, When I hover over the images, it gives the image name. How do I not display the name when my mouse hovers over the image. 7,092Oliver repliedAugust 3, 2023 at 8:16amHi,Please provide link to the page with the issuePlease note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver 7,092Oliver repliedAugust 3, 2023 at 8:18amOr try to add this code: document.addEventListener("DOMContentLoaded", function() { const images = document.querySelectorAll("img"); images.forEach(image => { image.addEventListener("mouseover", () => { image.dataset.originalTitle = image.title; image.removeAttribute("title"); }); image.addEventListener("mouseout", () => { image.title = image.dataset.originalTitle; delete image.dataset.originalTitle; }); }); });to the custom JS field in the theme optionsĀ Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
Hi, When I hover over the images, it gives the image name. How do I not display the name when my mouse hovers over the image.
Hi,
Please provide link to the page with the issue
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver
Or try to add this code:
to the custom JS field in the theme optionsĀ
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver