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