Hi i am really stack.
I have a few select boxes (at least 5) with the following structure
<li>
<div>
<select name="sb[]">...</select>
</div>
</li>
When a sb change i want to make an ajax call pass the selected value and replace the content of parent li with the html receive from ajax.
I tried the following
onchange="
$.get('file.php', { action: 'dothis'}, function(html) {
$(this).parent('li').html(html);
});
"
but is not working
Any Help