ユーザーがクリックしてdivを削除するアクションがページにあります。私が達成したいのは、クリックが発生したときに、ドロップダウンを自動的に変更して値を表示し、別のdivコンテンツを更新することです。
例えば:-
$("a.removeTier").live('click', function() {
//var tier = $(this).attr('id').match(/\d+$/);
var tier = $(this).parent().parent().attr('id').match(/\d+$/);
//Set the drop down to the correct option value. On this action I'd like to mimic a onChange so the content of another div changes
$('#tiers').val(tier);
//Remove the parent div of the link clicked
$('#tier'+tier).remove();
});