Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For this code:

$(this).find("Name")

This is XML (element "Name"):

  <Win32_Processor>
    <AddressWidth>32</AddressWidth>
    <L2CacheSize>256</L2CacheSize>
    <L2CacheSpeed>600</L2CacheSpeed>
    <LastErrorCode/>
    <Level>6</Level>
    <LoadPercentage>1</LoadPercentage>
    <Manufacturer>GenuineIntel</Manufacturer>
    <MaxClockSpeed>598</MaxClockSpeed>
    <Name></Name>
    <VoltageCaps/>
  </Win32_Processor>
share|improve this question
please post your xml its very hard to guess... – 3nigma Sep 5 '11 at 12:13
Please include your question in the post as well as just the title. – a'r Sep 5 '11 at 12:20
What are you?.. – axissoft Sep 5 '11 at 12:35

1 Answer

Check the length property of the above; if it is > 0, then at least one element was found.

share|improve this answer
It is work for this situation? There are no nested elements. This is the last level. <Name></Name> – axissoft Sep 5 '11 at 12:24
I'm not sure what you are asking. If you are searching a single XML element called "Name", then it contains no elements called "name_element". So searching it with find would return a length of zero. – dnuttle Sep 5 '11 at 12:39
Oops! I sealed. Must be for this code: $(this).find("Name") – axissoft Sep 5 '11 at 12:49
In that case, if $(this) is the "Name" element, you will get a length of zero, because the "Name" element does not contain an element of "Name". If $(this) refers to the entire XML, then you should get a length of 1. – dnuttle Sep 5 '11 at 12:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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