Selecting specific children
Hi!
I have the following scenario(well the structure is the same):
<fieldset id="fs"><p><select id="sl" runat="server" /></p></fieldset>
The name of the fieldset is constant but the name of the select is generated via asp.net thus i do not know the final id on that element.
I can call on the select by using $("[id$='sl']").change() wich works.
But its a bad solution because i need to be sure that i only trigger the element under the fieldset "fs"
$("#fs").children().change() works as well but i obviously am looking for a way to target onlythat select element under only that fieldset.
Anyone can helping me out getting the optimal way to do this?