J'essaie de rassembler une liste (tableau) d'identifiants dans un secteur.
<div id="mydiv">
<span id='span1'>
<span id='span2'>
</div>
$("#mydiv").find("span");
me donne un objet jQuery, mais pas un vrai tableau ;
Je peux le faire.
var array = jQuery.makeArray($("#mydiv").find("span"));
et ensuite utiliser une boucle for pour mettre les attributs id dans un autre tableau
ou je peux faire
$("#mydiv").find("span").each(function(){}); //but i cannot really get the id and assign it to an array that is not with in the scope?(or can I)
Quoi qu'il en soit, je veux juste voir s'il y a un raccourci dans jQuery pour faire ça ;