別のイベントの後に元のイベントを実行する方法に興味があります。たとえば、イベントを連鎖させる適切な方法は何ですか?
簡単な例がないので、作成してみます。
$('#select').on( 'click', function(event) {
$('#clearSelectButton').click(); // clears this select list
// still want to select an option from
// the select list (continuing original event)
});