Hello!
I use EE version 2.1.3
I have a little problem. User can choose a channel on fly. Here it is the working code:
<select name="channel_name" size="5">
<option value="1">AAA</option>
<option value="2">BBB</option>
<option value="3">CCC</option>
</select>
[removed]
$('select[name="channel_name"]').change(function() {
var v = $(this).val();
$('input[name="channel_id"]').val(v);
});
[removed]Categories are similar for channels “AAA” and “BBB”, but they are different for “CCC”. So I would like to change category list on fly like in ‘Advanced search form’. User choose channel “CCC” and then corresponded list of categories would loaded.
Could you help me in that question?