Jquery UI tooltip does not support html content

Edit: Since this turned out to be a popular answer, I’m adding the disclaimer that @crush mentioned in a comment below. If you use this work around, be aware that you’re opening yourself up for an XSS vulnerability. Only use this solution if you know what you’re doing and can be certain of the HTML content in the attribute.


The easiest way to do this is to supply a function to the content option that overrides the default behavior:

$(function () {
      $(document).tooltip({
          content: function () {
              return $(this).prop('title');
          }
      });
  });

Example: http://jsfiddle.net/Aa5nK/12/

Another option would be to override the tooltip widget with your own that changes the content option:

$.widget("ui.tooltip", $.ui.tooltip, {
    options: {
        content: function () {
            return $(this).prop('title');
        }
    }
});

Now, every time you call .tooltip, HTML content will be returned.

Example: http://jsfiddle.net/Aa5nK/14/

Leave a Comment