JSFiddle - React, Tailwind, and code Playground

HTML

<h3 class="widget-title" id="ultimecomunicazioni">Ultime comunicazioni</h3>

JavaScript

jQuery('#ultimecomunicazioni')
    .live("mouseenter", function() {
        jQuery(this).append('<span id="ultimecomunicazioni_appear" style="font-weight:normal;margin-left:5px">(<a style="color:grey" href="http://google.it">tutte</a>)</span>');
    })
    .live("mouseleave", function() {
        jQuery(this).children('#ultimecomunicazioni_appear').remove();
    });