up vote 1 down vote favorite
1
share [g+] share [fb]

I am reading in a complex chunk of HTML and I'd love to be able to walk this sub-tree of HTML in the same way I can the DOM.

Is there a way in Prototype to take a raw chunk of HTML (say from an AJAX call) and 'wrap it' in some way so that it becomes a Prototype element and thus allow me to search it using .up() .down() etc?

Or do I need to add it to the DOM first before I can manipulate it in this way?

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
var myDOMStructure = (new Element('div')).update(yourHTML);
myDOMStructure.down().down().up(); /// etc...
link|improve this answer
Beautiful. Exactly what I needed. Thanks! – Ciaran Archer Nov 4 '09 at 23:14
Simple and effective, solved a similar problem for me! – Michael Robinson Mar 12 '10 at 15:02
feedback

You could create a container element, give it an ID and put your complex HTML in it:

$('mydiv').update(complexHTML);

then you should be able to work through it like a DOM element.

link|improve this answer
As I mentioned I was thinking of this but trying to avoid it. The 'mydiv' you mention could be styled 'display:none;' and I could work it like this, but I was hoping to create an element I could search seperate from the DOM. – Ciaran Archer Nov 4 '09 at 23:00
Have you tried createElement without connecting it to the DOM? You could then extend it without an ID: $(createdElementVariable).update() – Pekka Nov 4 '09 at 23:03
feedback

Your Answer

 
or
required, but never shown

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