skin.board.line2/view_skin_js.php

13 lines
428 B
PHP
Raw Normal View History

2024-12-11 02:10:57 +09:00
<script language='JavaScript'>
function comment_wri(name, id) {
$('.modify_area').hide();
$('.qna-comment-content').show();
var layer = document.getElementById(name + id);
layer.style.display = (layer.style.display == "none") ? "block" : "none";
}
function comment_delete(url) {
if (confirm("이 코멘트를 삭제하시겠습니까?")) location.href = url;
}
</script>