I need to get the value of the div "code"

<ol id="selectable">
    <li>
      <div id="img01" style:"background-image: url(…);">
      <div id="name01">Frekad</div> 
      <div id="code01">3234427APW</div>
    </li>
     <li>
      <div id="img02" style:"background-image: url(…);">
      <div id="name02">Rosswa</div>
      <div id="code02">3234423AQW</div>
    </li>
     <li>
      <div id="img03" style:"background-image: url(…);">
      <div id="name03">Jeppo</div>
      <div id="code03">3234425AQQ</div>
    </li>
</ol>

I need to get the codeXX value for each li into an array. Thanks.

link|improve this question

2  
divs are not allowed inside a <li> – Chuck Conway Sep 13 '10 at 7:53
2  
@Chuck : Not sure the W3C agree with that... validator.w3.org/check?uri=http://innervisions.org.uk/… – Lazarus Sep 13 '10 at 7:59
1  
1  
Thirded - LI is a block level element which are generally permissive, and the XSDs for html and xhtml both allow DIV (amongst others) – annakata Sep 13 '10 at 8:24
feedback

1 Answer

up vote 3 down vote accepted

You can use the following loop to iterate through all the codeXX divs:

$("div[id^='code']").each(function(){
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.