Odstranit titulek obrázku na hover
Mon Apr 17 2023 12:31:18 GMT+0000 (Coordinated Universal Time)
Saved by
@hedviga
/*prvni moznost - do head*/
jQuery(document).ready(function($) {
$('img[title]').each(function() { $(this).removeAttr('title'); });
});
/*vložit do head*/
<script>
jQuery(document).ready(function($) {
$("img").mouseenter(function() {
let $lwp_title = $(this).attr("title");
$(this).attr("lwp_title", $lwp_title);
$(this).attr("title", "");
}).mouseleave(function() {
let $lwp_title = $(this).attr("lwp_title");
$(this).attr("title", $lwp_title);
$(this).removeAttr("lwp_title");
});
});
</script>
content_copyCOPY
Comments