var oFra = document.createDocumentFragment();
// oFra.[add elements];
document.createElement("div").id="myId";
oFra.getElementById("myId"); //not in FF
How can I get "myId" before attaching fragment to document?
|
1
|
How can I get "myId" before attaching fragment to document?
|
||
|
|
|
|
What about:
Unless you've added the the created --edit If you're willing to roll your own getElementById function then you ought to be able to get the reference you're after, because this code works:
|
||||||||||||
|
|
|
NickFitz is right, Even frameworks don't help you here, as they tend to require Nodes be in the document, or otherwise use methods on the context node that don't exist on fragments. You'd probably have to write your own, eg.:
It would almost certainly be better to keep track of references as you go along than to rely on a naïve, poorly-performing function like the above.
|
||
|
|
|
|
An external source, listed below, showed the following code snippet:
Which displays a different way of setting the object's ID parameter. |
||
|
|
|
|
No. The |
||
|
|