(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);
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter