What I mean is to make an html In a new window
You can set a variable equal to a new blank window opened, then take that window and write inside of its document some HTML code.
var a = window.open();
a.document.write(`
<!-- TYPE HTML CODE HERE -->
`);
Let me know if this isn’t what you meant.
I know a tip: HTML windows like @Hamzah_Alani suggested, they’re restricted almost since the era of popup ads closed. You could use some kinda-complex code to create a window inside of the player.
1 Like
I changed it, and it’s a popup now!
var mywindow = window.open("about:blank", "Name here", "popup,width=480,height=360");
mywindow.document.write(`
<!-- HTML CODE HERE -->
`);
Result: