ページにTwitterブートストラップモーダルがあり、それはかなりうまく機能します。ただし、表示中にキャプションと本文を動的に変更したい場合があります。
それ、どうやったら出来るの?
function showModal(){
$("#ajaxModal").modal({keyboard: false, show: true, backdrop: 'static'});
}
function hideModal(){
$("#ajaxModal").modal('hide');
}
///.............
showModal();
//.........
hideModal();