Код: Выделить всё
/
├── index.html
├── game1/
│ ├── game1.html
│ ├── css/
│ └── js/
├── game2/
│ ├── game2.html
│ ├── css/
│ └── js/
< /code>
код в index.html < /p>
< /blockquote>
Select a Game
Open Game 1
Open Game 2
✕
function openGame(url) {
const dialog = document.getElementById("gameDialog");
const frame = document.getElementById("gameFrame");
frame.src = url;
dialog.showModal();
}
function closeGame() {
const dialog = document.getElementById("gameDialog");
const frame = document.getElementById("gameFrame");
frame.src = "";
dialog.close();
}
Любой совет был бы очень признателен!>
Подробнее здесь: https://stackoverflow.com/questions/796 ... ut-works-l