Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to convert this loaded DOM to an array format which I can use.

<div>
    <div>[a image]</div>
    <div>
        <p class="ab">text 1</p>
        <p class="bc">text 2</p>
    </div>
</div>
<div>
    <div>[a image]</div>
    <div>
        <p class="ab">text 1</p>
        <p class="bc">text 2</p>
    </div>
</div> 

I Would like to read these div nodes and convert it to an array structure like so:

var arrayObj = [{
"img" : "source", "ab" : "text", "bc" : "text" }, { "img" : "source",
"ab" : "text", "bc" : "text" }

Could someone please tell me how I can achieve this?

Thanks

share|improve this question
What do you mean by HTML data? Is it loaded in the DOM? Is it actual HTML text? – I Hate Lazy Dec 1 '12 at 1:00
1  
What have you tried? – Matt Ball Dec 1 '12 at 1:00
Yes it is loaded in the DOM. @ Matt Ball - I havn't tried anything yet, i am very new to javascript and jquery – user1467439 Dec 1 '12 at 2:15

closed as too localized by I Hate Lazy, Matt Ball, Brian Clozel, Mario, Jens Björnhager Dec 1 '12 at 19:59

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Loop through the container's children[] array. For each one, find the image and the p tags. Assign to a new Object. Push the Object into an array.

Example:

var out = [], container = document.getElementById('container'),
    c = container.children, l = c.length, i, obj, p, m, j;
for( i=0; i<l; i++) {
    obj = {};
    obj.img = c[i].getElementsByTagName('img')[0].src;
    p = c[i].getElementsByTagName('p');
    m = p.length;
    for( j=0; j<m; j++) obj[p[j].className] = p[j].firstChild.nodeValue;
    out[i] = obj;
}
// out
share|improve this answer
Hi Kolink, that worked perfectly but I have this other issue. I am trying to assign a value to each p.length, the data array should look like: { [a image], title: text 1, description: text 2} Is there any small tweaks I can do to achieve this? – user1467439 Dec 1 '12 at 2:27
It should work already... What's it giving you that's wrong? – Kolink Dec 1 '12 at 2:29
As of now the script is only getting the content of p, but I wanted to assign each content of p to its relative class name. so the array will be like so ||| var out = { "img" : "http//source", "p.ab" : "text", "p.bc" : "text" } – user1467439 Dec 1 '12 at 2:38
That's what it's supposed to do... I have it looping through the <p> elements, getting their class name and their content, and adding it to the object... – Kolink Dec 1 '12 at 2:39
Its now working - sorry I was testing this on jsFiddle...duh! – user1467439 Dec 1 '12 at 2:55
show 1 more comment

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