This is the usage guide for BSDialog4.
Create(id, title, url, size)
id | string | Unique identifier for the modal, so you can refer to multiple modal |
title | string | Label at the top of the modal |
url | string | URL to load into the modal body |
size | string | Initial size of modal (xs, sm, md, lg, xl). Default is medium. |
Creates the Modal on the page and loads the body from a URL. An existing box will be reused if the ID already exists.
BSDialog.Create("123", "My Modal Box 123", "/my-modal-box.html");
BSDialog.Create("123", "My Modal Box 123", "/my-modal-box.html", "xl");
Close(id)
id | string | Unique identifier for the modal, so you can refer to multiple modal |
Close the Modal box by the box identifier.
BSDialog.Close("123");
Clear()
Close all Modal boxes on the page.
BSDialog.Clear();