ボタンをクリックした後にフォームの質問を表示したい 確認 jquery.thanks...
$("input[value='Close']").click(function () {
var ValidComment = document.getElementById('comment_update').value;
if (ValidComment == '') {
$("#ErrorUpdate").text("Comment is Required");
return false;
}
else {
return confirm('Are you sure to close this ticket ?');
--show form here-??
}
});