Hey Everyone,
I have a JavaScript problem that has been puzzling me for hours now. Since I can't seem to come up with anything useful, I though I'd ask for your input. Here's the goal:
- JS is executed on page load that clones the document structure (I don't believe you can just steal the child nodes of the document element, so I might just have to iterate through all objects and copy all of their properties) to a hidden IFrame that it positions off-page.
- Once the cloning is complete, event listeners are attached to most of the elements (excluding the IFrame and other hidden elements such as script tags) that wait for keystroke and other actions to occur. These actions are translated into changes on the original document, that is, modifications to properties of the elements acted on.
- When these changes occur, they need to be mirrored to the respective element in the IFrame (if a change is made to element#abc in the document, element#abc in the IFrame should be updated too). The problem here is that there is no guarantee that there is a unique way to refer to the mirror elements in the IFrame short of assigning all elements a numerically stepped ID, which I would like to avoid if at all possible.
Demo:
Document
<html>
<body>
<iframe></iframe>
<div>a</div>
<div>b</div>
<div>a</div>
</body>
</html>
IFrame
<html>
<body>
<div>a</div>
<div>b</div>
<div>a</div>
</body>
</html>
If the "a" in the first div of the actual document was changed to "c" (By element.innerHTML, let's say), this change must be reflected in the corresponding div (first one) in the IFrame.
Can you guys and gals think of a way to make this possible?
Thanks & Cheers,
PhpMyCoder
I apologize if this is a bit vague. I'm attempting to not get too specific so others can benefit from any answers given. If you would like a more concise explanation, I can edit one in. Also, sorry for not providing code here. This is more of a theory question, so you I didn't think specific code was necessary. Again, if you require it, I can append it to this question.