JSFiddle - React, Tailwind, and code Playground

by Muhammad Mushtaq Sheikh

HTML

<button onclick="funtt()">
CLick me
</button>
<div id="divDelete" class="Popup" style="display: none">
    <table style="width: 100%">
        <tbody>
            <tr>
                <td class="PopupHeader">
                    Delete
                </td>
            </tr>
        </tbody>
    </table>
    <table style="width: 100%">
        <tr>
        </tr>
        <tr>
            <td style="text-align: right;">
                <button class="btnOK" id="btnYesDelete">
                    Yes</button>
            </td>
            <td style="text-align: right; width: 85px">
                <button class="btnCancel2">
                    No</button>
            </td>
        </tr>
    </table>
</div>

CSS

#divDelete
{
  z-index:150;
}

JavaScript

funtion funtt()
{
$('#divDelete').show();
}