const SITE_COMPANY_URL = "https://vizensoft.com" const BLOG_PATH = "/about/itinsight/read.jsp?no=" // share button을 클릭했을 때, 주소를 복사하는 함수 function clickShareBtn(event, obj) { event.preventDefault(); event.stopPropagation(); const no = $(obj).data("no"); const copiedURI = SITE_COMPANY_URL + BLOG_PATH + no; navigator.clipboard.writeText(copiedURI) .then(() => { alert("클립보드에 링크가 복사되었습니다."); }) .catch((err) => { alert("링크 복사를 실패했습니다"); }) }