Hello i have followed Select object:\[code\]<select id="additionalDataForm.motoForm.cascoForm.ownerClaims.claimsLastYears" name="additionalDataForm.motoForm.cascoForm.ownerClaims.claimsLastYears" class="w-65 me2-casco-claims-last-years"> <option value="">-- choose--</option> <option value="http://stackoverflow.com/questions/14548601/0">0</option> <option value="http://stackoverflow.com/questions/14548601/1">1</option> <option value="http://stackoverflow.com/questions/14548601/2">2</option> <option value="http://stackoverflow.com/questions/14548601/3">3 and more</option></select>\[/code\]When I try to get this object by jQuery\[code\]$('additionalDataForm.motoForm.cascoForm.ownerClaims.claimsLastYears');\[/code\]or $('select#additionalDataForm.motoForm.cascoForm.ownerClaims.claimsLastYears');I'm getting []..So I try to get it from name by:\[code\]var select = $("select[name='additionalDataForm.motoForm.cascoForm.ownerClaims.claimsLastYears']")\[/code\]And that's work and i have select object in select variableNext I need to iterate each option so I'm trying to get options collection to iterate but \[code\]select.options or $("select[name='additionalDataForm.motoForm.cascoForm.ownerClaims.claimsLastYears']").options\[/code\]give my undefined..and I don't know how to iterate each options elements in my select, I have no idea what it happens it can be because my element ID have commas "." ? I can't fix name because it is auto generated by spring and it must be posted to server with right name;