$(document).ready(function() { $("[title]:not(.ItemImage)").removeAttr('title'); });

This removes the tooltip of anything else but it not remove the default tooltip from my specific class (.ItemImage).

Please, can you help me or guide me. Thank you!

link|improve this question
maybe using :not? like $("[title]:not(.myClass)")? – JCOC611 Apr 24 '11 at 20:06
Can you be more specific? Which ones do you want to have native tooltips? Or, which ones should not have native tooltips? – mu is too short Apr 24 '11 at 20:08
The title of "a.ItemImage" is what I want to show in tooltip. Nothing else. – Carlos Salas Apr 24 '11 at 20:18
feedback

2 Answers

You can custom Class right.

difine two set of class..so that you can disable the set

link|improve this answer
feedback

are you mean this ?

$('a.have_tt').attr('title',$(this).data('title'));
link|improve this answer
I'm talking about this: $(document).ready(function() { $("[title]:not(.ItemImage)").removeAttr('title'); }); But removing the default tooltip from the .ItemImage class and leaving the custom via css: a.ItemImage[title]:hover:after {} – Carlos Salas Apr 24 '11 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.