Copy
tbIframe.close();
Example
Copy
// Close payment iframe
function closeIframe() {
tbIframe.close();
}
document.getElementById('close_button').addEventListener('click', ()=>closeIframe());
Closes the iframe and remove the the iframe element form the DOM. Note that it will also trigger onClose callback if passed in init method.