34. 웹 표준 사이트 만들기(2019) - 윈도우 팝업
34. 웹 표준 사이트 만들기(2019) - 윈도우 팝업 소스 index.html ... Advertisement ... //윈도우 팝업 $(".window").click(function(e){ e.preventDefault(); //window.open("파일명", "팝업이름", "옵션설정"); //옵션 : left, top, width, height, status, toolbar, location, menubar, scrollbars, fullscreen window.open("sample_popup.html","popup01","width=800, height=590, left=50, top=50, scrollbars=0, toolbar=0, menubar=0"); }); sample_popup.h..