Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
701 views

cloneNode in internet explorer

While executing the following code IE throws the error -- Object doesn't support this property or method -- referring to the cloneNode() method. 'i' is the loop counter, source and dest are both HTML ...
2
votes
1answer
76 views

IE not desired new line on TD dynamically added with Javascript

I wrote a JS script to dynamically add rows on a table. On a select element change, this script reads an HTML div set to display:none and clone this template with CloneNode(True) method. ...
2
votes
3answers
3k views

How efficient is element.cloneNode(true) (deep clone)?

I'm building the HTML code within an XML DOM object to be used as the contents of the innerHTML of a div element using an XSL template. Traditionally we create a new XML DOM document and add the input ...
2
votes
6answers
6k views

How to Maintain Correct Javascript Event After Using cloneNode(true)

I have a form element that contains multiple lines of inputs. Think of each line as attributes of a new object that I want to create in my web application. And, I want to be able to create multiple ...
1
vote
2answers
61 views

javascript: cloning an object and its nodes

I couldn't seem to find quite what I'm looking for in any other question. I am wondering if there is a way to clone an object and its DOM nodes. I have tried: newObj = jQuery.extend(true, {}, ...
1
vote
1answer
924 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( ...
0
votes
0answers
36 views

javascript- error when using cloneNode in context of an iframe

I am working on a Google Chrome Extension that translates text and replaces original text with translated text. I am now trying to add support for translation of text within iframes to this ...
0
votes
1answer
88 views

Javascript cloneNode issue in FireFox

The JavaScript below works great in Internet Explorer, but doesnt work in FireFox. It gets hung up at "NewField is undefined" which would be the line: for (var i=0;i<NewField.length;i++) That ...
0
votes
1answer
54 views

how to preserve style when cloning a node

I want to take an html document (a book chapter) and separate it into pages (an array of DIV, each containing a page of html content that will fit within the prescribed dimensions of the DIV). I walk ...
0
votes
2answers
129 views

Javascript Clonenode() - get element by id?

I am fiddling with this javascript code here http://jsfiddle.net/7Sd4W/4/ I am trying to get it to clone a select element with ID = "sel0" Then when It clones it I want it to create the same ...
0
votes
0answers
102 views

Contents of script tag not retained with cloneNode IE6,7,8

When I clone use cloneNode() on children of #node below, shuffle the cloned nodes, and then replaceChild() to switch them back out - the switching of nodes works perfectly eg; box2 is first, box1 ...
0
votes
1answer
357 views

PHP DOMNode insertBefore (No Modification Allowed Error)

I've noticed that when attempting to call a DOMNode's insertBefore method where the node to-be-inserted is from another document (i.e. different from the reference node and node being inserted into), ...
0
votes
3answers
430 views

Cloning elements [div] [script] in Javascript

I'm trying to clone a div in pure Javascript, however, cloneNode leads to duplicate ids (div_0). I would like to increment the id as div_1, div_2... and do the same to somevar = {'elem', 'div_1'}... ...
0
votes
1answer
104 views

How can i duplicate a button inclusive its functions with javascript?

I have a button wich appends some elements. Now i want a button wich duplicates this button. I found some articles about clone() but i believe thats jquery? I cant seem to find the answer but i ...
0
votes
1answer
175 views

javascript cloneNode and properties

Is there a quick way to "super" deep clone a node, including its properties? (and methods, I guess) I've got something like this: var theSource = document.getElementById("someDiv") ...
0
votes
1answer
195 views

Loading a form with input text rows equal to a passed variable number using the clone function

All I want to do (and it would be easy enough with PHP, but I'm pushing myself to learn more javascript and jQuery and front end coding right now by modifying scripts to understand what they do) is to ...
0
votes
1answer
375 views

Moving a node from one XML document to another using SimpleXML

I realize that my request is not possible using just SimpleXML -- that much I did figure out. Here is what I tried: $newXML = simplexml_load_file($filePath); $domNewXML = ...
0
votes
1answer
355 views

Copy all childNodes to an other element. In javascript native way

Hello I have to change "unknown" contents of XML. The structure and content itself is valid. Original <blabla foo="bar"> <aa>asas</aa> <ff> <cc> ...