음... 아이콘은 fontawesome에서 구했습니다. 음.. 누르면 사라지게하고 다른 요소가 나타나게하는 건 간단합니다. # HTML send 제가 짠 HTML 코드는 이렇습니다. JS 파일로 따로 다뤄서 jQuery로 진행했습니다. # jQuery const $chatDiv = $('#chatDiv'); const $chatWindow = $('#chatWindow'); const $chatClose = $('#chatClose'); $chatDiv.hide(); // 미리 사라지게 함. $(document).ready(function(){ $chatWindow.click(function(){ $chatDiv.toggle(); // hide()상태이면 sho..