|
|
|
16년 전
|
조회 1,591
|
|
|
|
16년 전
|
조회 1,362
|
|
|
|
16년 전
|
조회 1,307
|
|
|
|
16년 전
|
조회 943
|
|
|
|
16년 전
|
조회 835
|
|
|
|
16년 전
|
조회 908
|
|
|
|
16년 전
|
조회 1,552
|
|
|
|
16년 전
|
조회 1,000
|
|
|
|
16년 전
|
조회 2,079
|
|
|
|
16년 전
|
조회 2,490
|
|
|
|
16년 전
|
조회 1,563
|
|
|
|
16년 전
|
조회 1,007
|
|
|
|
16년 전
|
조회 941
|
|
|
|
16년 전
|
조회 978
|
|
|
|
16년 전
|
조회 777
|
|
|
|
16년 전
|
조회 1,542
|
|
|
|
16년 전
|
조회 945
|
|
|
|
16년 전
|
조회 2,340
|
|
|
|
16년 전
|
조회 975
|
|
|
|
16년 전
|
조회 756
|
댓글 1개
//-------------------------------------------------------------------
//상태표시줄에 URL경로 감추기
//-------------------------------------------------------------------
//상태표시줄에 들어가는말
var statusmsg = "환영합니다!!";
//링크 선택시 상태표시창에 url 감추기
function hidestatus(){
window.status = statusmsg;
return true;
}
//링크 선택시 상태표시창에 url 감추기(Click시에도 감춰짐)
function ClearURL() {
if(event.srcElement.tagName == "A" || event.srcElement.tagName == "IMG")
{
SetTime = setTimeout("ClearURLs()", 0);
}
}
function ClearURLs() {
window.status = statusmsg;
clearTimeout(SetTime);
}
document.onmouseover = ClearURL;
</script>