Skip to content

Creating Popups On The Fly

madprops edited this page Aug 14, 2017 · 3 revisions
function pop(html)
{
    var msg = Msg(
    {
        preset: "popup" // or "popup_autoclose"
        // Other options
    });

    msg.show(html);
}

pop("Hello");

Clone this wiki locally