function copyDiscountCode(event) { // 클릭된 요소가 이미지인 경우 if (event.target.nodeName === "IMG") { const el = document.createElement('textarea'); el.value = 'BGR10'; document.body.appendChild(el); el.select(); document.execCommand('copy'); document.body.removeChild(el); // 알림창 표시 alert(`할인코드 'BGR10'이 복사되었습니다.`); } }