+ 1
In jquery in selector last question is confusing
in that section it wants me to find what letter that makes it possible for the code to select all of the direct child in the document and it gives me this code $("div >_") and the information given to me it says $("div > p") is how u select all of the direct child (remember that its asking for that) but every time I type in p it says I'm wrong when clearly I'm right
2 Antworten
+ 12
The answer is div>*
> = direct child
* =all
+ 1
ah now I see thx