JSFiddle - React, Tailwind, and code Playground

by jjay225

HTML

<div id="litReferedTasks" style="background-color: White; display: nine; height:95%;">
    <label ID="lblNoReferedTasks" runat="server" Visible="false" Width="100%">asdad</Label>
        <label ID="lblNoReferedTasks" runat="server" Visible="false" Width="100%">asdad</Label>
            <label ID="lblNoReferedTasks" runat="server" Visible="false" Width="100%">asdad</Label>
</div>
<input type="button" id="dialog1" value="click"/>

JavaScript

var s='test'; 
var title1='test1';
 
        $('#litReferedTasks').dialog({
            autoOpen: true,
            modal: true,
            resizable: true,
            show: 'drop',
            hide: 'drop',
            width: 200,
            minHeight: 0,
            height: 200,
            title: title1          
        });
      
 
    $("#dialog1").on("click", function()
 {
     $("#litReferedTasks").dialog();
 });