-1

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?

Casey Falk
  • 2,617
  • 1
  • 18
  • 29
S Rihan
  • 31
  • 7

2 Answers2

2

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/

0

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.

Community
  • 1
  • 1
Casey Falk
  • 2,617
  • 1
  • 18
  • 29