Suppose I had the following HTML:
<a href="#" title="Multi Function"><img src="..."></a>
Is there a jQuery plugin to style the browser's default tooltip or can this be done with CSS?
Suppose I had the following HTML:
<a href="#" title="Multi Function"><img src="..."></a>
Is there a jQuery plugin to style the browser's default tooltip or can this be done with CSS?
You can use jQuery to do that.
For example, if you need to change the scrollbar: http://www.net-kit.com/jquery-custom-scrollbar-plugins/
Nope.
There is currently no way to style the browser's default tooltip.
Your best bet is to use a JavaScript library built to replace the default tooltip entirely (eg: jQuery UI's, jQuery Tool's, etc.). There is also a clever CSS trick you can do to replace the default tooltip (source). Note that each creates a substitute for the tooltip and doesn't style the tooltip itself.