File size: 260 Bytes
6f55a1e
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
window.onload = () => {
let chat = document.querySelector('div.container-fluid')
function addMsg(obj) {
  let html = document.createElement('span')
  html.className = 'msg'
  html.innerHTML = obj
  chat.appendChild(html)
}

window.onclick = () => addMsg(12)
}