Tagged: javascript, jQuery
I am using a the Xing social icon setting under my header layout in the enfold theme options. I change their logo to something I want, and i have put my custom link. But how can i change the tooltip that still comes up for Xing. I want to say something else. that is more specific for my icon and link.
Hi ojasray!
The best solution would be to use Jquery’s .removeAttr() to remove the title attribute from the icon’s html.
Add the following to your custom js file or create one using the instructions here
(function($) {
$(document).ready(function() {
$('.social_bookmarks li a').removeAttr('title');
})
})(jQuery);
Cheers!
Arvish