colecov
11/21/2017 - 6:49 PM

Enfold remove tooltips from images on hover

Enfold remove tooltips from images on hover

/* Remove tooltips from images on hover */

function add_custom_tooltip(){
?>
<script>
jQuery(window).load(function(){
jQuery('a').removeAttr('title');
jQuery('img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_tooltip');