Close a mobiscroll.popup programmatically

Hi @Michael_DeMutis :wave:

If you’re looking for closing a popup programatically, you can do that using the following code:

// Init popup
$(‘#mypopup’).mobiscroll().popup();

// Hide it later
$(‘#mypopup’).mobiscroll(‘hide’);

Let me know if this helps :wink: