Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
document.addEventListener('DOMContentLoaded', () => {
const modal = document.getElementById('modal') as HTMLElement;
const openBtn = document.getElementById('open') as HTMLButtonElement;
const content = document.getElementById('content') as HTMLElement;
openBtn.addEventListener('click', async () => {
modal.style.display = 'block';
const res = await fetch('https://jsonplaceholder.typicode.com/posts/1');
const data = await res.json();
content.textContent = data.title;
});
});Coding works best on desktop or with an external keyboard.