Good day I have two select tags with options created at runtime, the select ones are displayed correctly with their options, I add them with jquery the onchange event so that when a different option is selected, perform a function,
$("#combo1").attr('onchange', "SelectedIndex1(this.value)");
$("#combo2").attr('onchange', "SelectedIndex2(this.value)");
(Where SelectedIndex1 and 2 are the functions that I want the combos to perform when selecting a value) In one of the selections it is done correctly, but I have a select to which the onchange event is not added, some idea of why it does not detect it? Thanks.