Jquery $.POST() を使用してフォーム値をポストし、特定のセレクターをロードしたい 方法がわからない json などを使用する可能性がある
$.post('topic.php', {
    id: id
}, function(data) {
    $("#message")
        .html($(data).('attr', 'title'))
        .hide()
        .slideDown(500); //Fade in the data given by the topic.php file
});
return false;
});
ページ全体ではなく、タイトルと説明のみを読み込みたい
このタイトルと説明をライトボックスで取得したいのですが、どうすればよいですか?