File size: 436 Bytes
f127f19 |
1 2 3 4 5 6 7 8 9 10 |
// highlight object on load using CSS animation
// window.addEventListener("load", function () {
// const elementToHighlight = document.querySelector(".rthelp"); // Replace with your element's CSS selector
// if (elementToHighlight) {
// elementToHighlight.style.borderColor = "transparent"; // Set initial transparent border
// elementToHighlight.classList.add("highlight-animation"); // Add animation class
// }
// });
|