How I can show SharePoint Modal Popup Dialog with HTML option in SharePoint 2019? I am trying to use SP.UI.ModalDialog.showModalDialog to open link in SharePoint Popup Dialog but I need to show DIV HTML instead? How I can do that?
var options = {
url: pageUrl,
title: 'Modal Title',
allowMaximize: false,
showClose: true,
width: 726,
height: 372
};
SP.SOD.execute('sp.ui.dialog.js', 'SP.UI.ModalDialog.showModalDialog', options);
}