以下の3つの入力フィールドがあります。
<input type="text" name="address" id="address"/>
<input type="text" name="city" id="city"/>
<input type="text" name="country" id="country"/>
これらすべてのフィールドにonChangeイベントを一度に追加するにはどうすればよいですか?
$("select the elements with id address,city,country").bind("change", function() {
//do something
});