사이드뷰에서 채팅 페이지열기 정보
사이드뷰에서 채팅 페이지열기
본문
gnu/chat.php 파일을
사이트뷰에 추가하려합니다.
sideview.js 파일에서 아래같이 하니 안됩니다.
경로를 어떻게 지정해줘야하는지 좀 알려주세요,
// 채팅창
if (mb_id)
this.insertTail("memo", "<a href=\"javascript:win_memo('"+g4_path+"/" + "/chat.php"');\">채팅하기</a>");
사이트뷰에 추가하려합니다.
sideview.js 파일에서 아래같이 하니 안됩니다.
경로를 어떻게 지정해줘야하는지 좀 알려주세요,
// 채팅창
if (mb_id)
this.insertTail("memo", "<a href=\"javascript:win_memo('"+g4_path+"/" + "/chat.php"');\">채팅하기</a>");
댓글 전체
아래처럼 하시면...
// 채팅창
if (mb_id)
this.insertTail("chatting", "<a href=\"javascript:win_open('"+g4_path+"/chat.php','chatting','width=500,height=550,scrollbars=yes');\">채팅하기</a>");
// 채팅창
if (mb_id)
this.insertTail("chatting", "<a href=\"javascript:win_open('"+g4_path+"/chat.php','chatting','width=500,height=550,scrollbars=yes');\">채팅하기</a>");

감사합니다.