Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #403120

    Hi!

    I don’t know why, but the site is showing the text attributes in the mousever.

    Any ideas?

    #403482

    Hi C-LabMX!

    Please add following code to Functions.php file in Appearance > Editor

    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');

    Best regards,
    Yigit

    #403542

    Thanks a lot Yigit!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Att showing on mouseover’ is closed to new replies.