これが DOM の写真です: http://screencast.com/t/o9CZQMO0o
$(".dialogue .delete").click(function(e) {
e.preventDefault();
var bubble = $(this).parentsUntil(".questions");
alert(bubble.html()); return;
});
削除をクリックすると、クラス 'dialogue' と 'customer' で div の内容を警告したいのですが、代わりにクラス 'manage' で div の内容のみを取得します。
私は何を間違っていますか?