Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
588 views

Converting Range or DocumentFragment to string

Is there a way to get the html string of a JavaScript Range Object in W3C compliant browsers? For example, let us say the user selects the following: Hello <b>World</b> It is possible to ...
3
votes
6answers
801 views

node selection and manipulation out of the dom (What is jQuery's trick ?)

Hi I would like to do dom selection and manipulation out of the dom. The goal is to build my widget out of the dom and to insert it in the dom only once it is ready. My issue is that getElementById ...
3
votes
4answers
1k views

Is there any way to find an element in a documentFragment?

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 ...
2
votes
2answers
112 views

jQuery: array of elements to raw html?

Let's say I have an array like this: var content = [ $('<p>...</p>'), $('<p>...</p>') ]; I need to get the markup of the concatenated elements. So I need to convert content" ...
1
vote
1answer
291 views

How do I create Variables in XSLT that are not document fragments?

Consider the following XSLT 2.0 template <xsl:template match="/"> <xsl:variable name="var1"> <elem>1</elem> <elem>2</elem> ...
1
vote
1answer
928 views

documentFragment.cloneNode(true) doesn't clone jQuery data

I have a documentFragment with several child nodes containing some .data() added like so: myDocumentFragment = document.createDocumentFragment(); for(...) { myDocumentFragment.appendChild( ...
1
vote
0answers
239 views

DocumentFragment not appending in IE

I have a select list which, when changed, pulls data via ajax and dynamically creates select lists. Then based on the data used to create the select lists (a type), I pull more data via ajax if i ...
0
votes
1answer
61 views

combining documentfragment and replacechild to minimize reflow

I'm making a javascript game without using canvas, and I want the screen to reflow only once per cycle, for speed. Is there a way for documentFragment to replace named elements? EDIT: The javascript ...
0
votes
2answers
58 views

How to use jQuery selector/find() against text string without inserting into the DOM?

I have a text string i'm trying to select the spans from using jQuery. I'd like to grab the spans w/o adding the element to the dom -- if that's possible? After reading the jquery docs i was under ...
0
votes
2answers
133 views

How to parse a DocumentFragment with with the Java standard DOM API

This is how I can parse a well-formed XML document in Java: DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); // text ...
0
votes
1answer
99 views

Reorder elements layout according to array with elements id's

I need to perform the following task : There are two 'ul' elements containing some 'li' with unique id's. <div id="sr"> <ul id="li-fav"> <li ...
0
votes
0answers
50 views

Working on template without appending it in Ext

I'm debugging a small application built with ExtJS. I need a possibility to build a dom fragment with the use of template and be able to query through it, append and delete elements but without ...
0
votes
0answers
92 views

Creating / wrapping DocumentFragment in MooTools JavaScript library

How to do equivalent of the following pure JavaScript fragment with MooTools x = document.createDocumentFragment(); x.[fill with nodes]; document.[somewhere].appendChild(x); In particular as ...
0
votes
0answers
70 views

How does a DOMDocumentFragment relate to the DOMDocument

Can someone tell me in what ways does a DOMDocumentFragment relate to a specific DOMDocument? If I had to different DOMDocuments and created a fragment from both how would the specific ...
0
votes
1answer
34 views

documentFragement

please take a look at the following code. var oFra = document.createDocumentFragment(); var myDiv = document.createElement("div"); myDiv.id="myId"; oFra.appendChild(myDiv); ...
0
votes
1answer
469 views

Does jquery clone() user documentfragment internally?

I am inserting elements into dom dynamically and for that i m using following steps :(jquery) The initial dom structure is as below: <div parent div> </div> <div child div ...