// Showing a simple text string
var popup = new Popup(
'Test popup',
'Hello world!'
);
// Opening an external site within an iframe
var popup = new Popup(
'Test popup',
'http://astrata.com.mx'
);
From the demo site, I see this two setting but when I try to put it on the web,
it happen to the same result(both display the wordings.
How to Opening an external site within an iframe by using the pop up?
Thanks you for your answer.