Learn Lightbox Preview Image Onmouseover
Usually the image is being previewed with anchor's onclick event. But what if we want to change the event to onmouseover. Here's wh...
https://www.czetsuyatech.com/2021/07/web-lightbox-image-preview.html
Usually the image is being previewed with anchor's onclick event. But what if we want to change the event to onmouseover.
Here's what to do:
1.) Open lightbox.js
2.) On line 190
document.observe('click', (function(event)
TO
document.observe('mouseover', (function(event)
And that should do it.
Post a Comment