Hide Title tag on image Hover

PHOTO EMBED

Mon Aug 07 2023 20:53:02 GMT+0000 (Coordinated Universal Time)

Saved by @mastaklance

<script>
jQuery(document).ready(function($) {
    $('img').hover(function()
    { $(this).removeAttr('title'); });
});
</script>
content_copyCOPY