jQuery/ダイアログボックス画面のカスタマイズ

jQuery
	
$(function(){
  $("#alertButton").click(function(){
    $.confirm({
      'title'     : 'タイトル',
      'message'   : 'ここにメッセージを表示します。',
      'buttons'   : {
         'OK': function() {
           //OKボタンの処理
           $(this).dialog('close');
         },
         'キャンセル': function() {
           //キャンセルボタンの処理
           $(this).dialog('close');
         }
      }
   });
 });
});