【IBH韓國首爾頒授及國際大賽2024 - 5月17-18日】
一年一度韓國IBH總會國際委員長,資深名譽會長及名譽會長及項目主席委任儀式及頒授典禮、將於5月17、18日在韓國首爾舉行,屆時可以與亞洲各地區的分會代表及韓國總會理事成員認識,一齊互動,交流切磋,創造商機;
';
html += response.data.avatar;
html += '';
html += '
' + response.data.name + ':
';
html += '
';
html += '
Reply';
html += '
' + response.data.comment + '
';
html += '
';
$appendTo.before(html);
}
callback && callback(response.message);
}
if (response.status === 'error') {
$.each(response.errors, function (i, field) {
$form.find('[name="' + field + '"]').addClass('has-error');
});
}
}, 'json');
}
$('.reply-btn').live('click', function () {
var $comment = $(this).closest('.comment');
if ($comment.attr('data-has-form') === 'false') {
var $form = $('.post-comment form').clone();
$form.find('.has-error').removeClass('has-error');
$form.append('');
$form.find('a').removeClass('comment-submit').addClass('reply-submit');
$comment.append('Leave a Reply
');
$comment.attr('data-has-form', 'true');
} else {
$comment.find('.reply-form').remove();
$comment.attr('data-has-form', 'false');
}
});
$('form .comment-submit').live('click', function () {
var $form = $(this).closest('form');
var $comment_form = $('.post-comment');
generateComment($form, 'comment', $comment_form, function (message) {
$comment_form.before('' + message + '
');
setTimeout(function () {
$('.comments .success').fadeOut(400);
}, 2000);
$form[0].reset();
});
});
$('form .reply-submit').live('click', function () {
var $form = $(this).closest('form');
var $reply_form = $(this).closest('.comment').find('.reply-form');
generateComment($form, 'reply', $reply_form, function (message) {
$reply_form.before('' + message + '
');
setTimeout(function () {
$('.comments .success').fadeOut(400);
}, 2000);
$form.closest('.comment').attr('data-has-form', 'false');
$reply_form.remove();
});
});