Wie kann jQuery ein Objekt auswählen, wenn der Name ein Unterfeld in einem Array angibt?jQuery Selektor für Unterfeld in Array?
ich spontan versucht:
$('select[name=field[subfield]]').change(function(){
alert('houston we have contact');
});
Das DOM-Objekt ist:
<select name="field[subfield]">
<option>..</option>
<option>..</option>
<option>..</option>
</select>