skin.board.line2/view_skin_js.php

13 lines
400 B
PHP
Raw Normal View History

2024-12-11 02:10:57 +09:00
<script language='JavaScript'>
2025-01-16 13:25:14 +09:00
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";
}
2024-12-11 02:10:57 +09:00
2025-01-16 13:25:14 +09:00
function comment_delete(url) {
if (confirm("이 코멘트를 삭제하시겠습니까?")) location.href = url;
}
2024-12-11 02:10:57 +09:00
</script>