SharePoint Online Disable all Webart Tooltips on a Page

SharePoint Online Disable all Webart Tooltips on a Page

Hello.  The jQuery below disables the hyperlink attribute for all webparts on a SharePoint Online page when you hover over a ListView webpart title.

$(document).ready(function() {
    $('.ms-webpart-titleText').each(function() {
        var link = $(this).find('a');
        if (link.length > 0)
            $(this).text(link.text());
    });
});

I also need to disable the tooltip that pops up when you hover over the webpart title.  I've tried various javascript and jQuery functions and nothing seems to work.  Any help is appreciated.