JSFiddle - React, Tailwind, and code Playground

by hamix

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/dot-luv/jquery-ui.css">

JavaScript

var SplitTable = "Split Table", updatTable = "Update Table";

var $dialog = $('<div></div>')
    .html(SplitTable)
    .dialog({
        title: 'خطا',
            autoOpen: false,
            width: 700,
            resizable: false,
            modal: true,
            show: { effect: 'fade', speed: 500 },
            hide: { effect: 'fade', speed: 500 },
            buttons: {
                'بستن': function () {$(this).dialog("close");}
            }
    });

$dialog.dialog('open');

$dialog.html(updatTable);