There is some kind of dialog on jQuery UI:
$("#dialog").dialog({ dialogClass: 'test', autoOpen: false }); $("#open").click(function(){ $("#dialog").dialog("open"); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script> <link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" /> <button id="open">Open</button> <div id="dialog"> ΠΠΈΠ°Π»ΠΎΠ³ </div> How can I add a "maximize" button on the titlebar (near the cross)?
Well, or just how to add a button?