Hide the social share title tooltip

PHOTO EMBED

Mon Jan 15 2024 09:09:07 GMT+0000 (Coordinated Universal Time)

Saved by @Pulak

(function($){
	  $(document).ready(function() {
	    var Selectors = $('.sptp-member-social li a');
	    Selectors.each(function(){
		    var originalTitle = $(this).attr('title');
		    $(this).mouseenter(function() {
		      $(this).removeAttr('title');
		    });
		    $(this).mouseleave(function() {
		      $(this).attr('title', originalTitle);
		    });
	    })
	  });
})(jQuery);
content_copyCOPY

https://codeshare.io/vwylnl