JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

JavaScript

$.widget("ui.dialog", $.extend({}, $.ui.dialog.prototype, {
    _title: function(title) {
        if (!this.options.title ) {
            title.html(" ");
        } else {
            title.html(this.options.title);
        }
    }
}));

var tag = $('<div>').attr('title', 'test');
tag.html('data').dialog({
    title: '<img src="http://lorempixel.com/50/50" />'
}).dialog('open');