Pop-Up Function

Woohyun·2022년 10월 24일
0

NodeJS

목록 보기
4/5

Open Url - Pop-Up

참조 url
https://developer.mozilla.org/en-US/docs/Web/API/Window/open

const popUp2 = (event) => {
    const { target } = event;
    window.open(target.id, '_blank',' width=1200px , height=900px, toolbars=no, scrollbars=yes');
   
    return false;
}
profile
개발자 지망생

0개의 댓글