ich eine Tabelle haben, dass in jeder Reihe, dass es eine Combobox in einem td-Tag ist, ich will, wenn Combobox geändert dann Inhalt des nächsten td ändertÄnderung Inhalt des nächsten td von jquery mit
ich diesen Code schrieb aber es funktioniert nicht:
$(document).ready(function() {
$('#table tr td').find('.combobox').change(function() {
var myvar=$(this).val();
$.post("./data.php", {
p_array : myvar,
}, function(data) {
$(this).parent().next('td').html(data);
});
});
});
Tabellenstruktur:
<table>
<tr>
<td>
<select class="combobox">
<option>
select something
</option>
</select>
<td>
<td>must be changed</td>
<tr>
</table>
, was ist das Problem?