JSFiddle - React, Tailwind, and code Playground

by BR0kEN

HTML

<div id="addcomment" style="display:none">
    addcomment from here
</div>

JavaScript

function addcomment(){
    var form=document.getElementById('comments');
    form.focus();
    form.value+="[b]Жанр:[/b] \n[b]Режиссер:[/b] \n[b]В ролях:[/b] ";
    $(function(){
        $('#addcomment').dialog({
            autoOpen:true,
            show:'fade',
            hide:'fade',
            title:'Добавить комментарий',
            width:550,
            buttons:{
                "Закрыть окно":function(){
                    $(this).dialog("close");
                    form.value="";
                }
            }
        });
        $(".ui-icon").click(function(){
            form.value="";
        });
    });
}