Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
98 views

What is better, appending new elements via DOM functions, or appending strings with HTML tags?

I have seen a few different methods to add elements to the DOM. The most prevelent seem to be, for example, either document.getElementById('foo').innerHTML ='<p>Here is a brand new ...
5
votes
3answers
329 views

PHP DOM - append source html to a DOMElement

is there a way of appending source html into a DOMElement? Something like this: $trElement->appendSource("<a href='?select_user=4'>Username</a>"); it would parse that fragment and ...
3
votes
3answers
90 views

Javascript efficiency improvement on appendChild Method

I want to alter the following Java script to make it more efficient for(var i = 0; i < 1000; i += 1){ var el = document.createElement('div'); ...
3
votes
1answer
69 views

Copying children elements of one division to another along with all associated events

I am trying to replace a certain div element parent with another one newparent. I want to copy only some of parent's children and put them in newparent, and then replace the parent by newparent. Here ...
3
votes
2answers
189 views

Early appendChild hell in top 3 browsers

I'm trying to lazy load javascripts, but I can't get it to work reliably. My pages load quite quickly and I want to keep it that way, so I'm not about to use a timeout to delay the loading. Besides ...
2
votes
2answers
74 views

AppendChild issue with Internet Explorer Javascript

The following piece of code, works correctly in Firefox and Chrome, but it gives me a headache in IE. var anotherDiv= document.getElementById("anotherDiv"); var destination = ...
2
votes
1answer
779 views

Firefox 4 beta won't allow dynamic creation of elements (Javascript) in new window?

It seems I can't really append elements to a new window in Firefox 4 beta (tested with beta 10). It works fine in Firefox 3, Opera, Chrome and IE6, but it seems FF beta 4 broke it. Here's a simple ...
2
votes
3answers
149 views

trouble creating nested dom nodes in javascript

I've a function that takes an object as a parameter, and uses the structure of the object to create nested DOM nodes, but I receive the following error: http://new.app/:75NOT_FOUND_ERR: DOM Exception ...
2
votes
1answer
319 views

xmldoc.Childnodes.item() question

I decided to try out the tutorial on this website http://www.csharphelp.com/2006/05/creating-a-xml-document-with-c/ Here's my code, which is more or less the same but a bit easier to read using ...
2
votes
2answers
5k views

Safari and Chrome doesn't evaluate dynamically added <script> tag at page load

I am writing small JavaScript code which will load external js files at html page loading. I tested 2 ways. Case 1: Used document.write to add <script> tag. It worked for all browsers (IE, FF, ...
2
votes
2answers
5k views

Javascript DOM - add form element to newly created appendChild?

I have two functions to add and remove table rows that contain a form input element. They both work fine, but I have a problem in that I need to show a Remove button input only on subsequently created ...
1
vote
1answer
36 views

Modify select field options using Javascript

I am trying to create a Javascript function that will take the value from one select field and then use that to compare a JSON array . If any array elements match the user selected value then the ...
1
vote
2answers
91 views

Flex 4.6 - XML appendChild unexpected behaviour

i want to use XML to save some configuration for elements in my app. in my example i want to add 6 additional configuration sets to one "main" XML. each set can be config1 or config2. In this case i ...
1
vote
1answer
82 views

Can't add elements to DOM

I'm making a little game framework that appends Canvas elements to a DIV but whenever I add an element to the DIV the last element gets removed. Here is my html: <!DOCTYPE html> <html> ...
1
vote
2answers
66 views

Javascript: Get Notified when fragment is added to the DOM

What I want I'm loading a fragment of HTML from server side with AJAX, and I'm appending it to the document, and I would like a way to get notified when the fragment is fully added into the dom. I'm ...
1
vote
3answers
79 views

Javascripts added via appendChild don't seem to run

I've got a javascript file being added dynamically to a page. If I use document.write, it works fine: <html> <head></head> <body> <script type="text/javascript"> ...
1
vote
2answers
168 views

lastchild.appendchild in Firefox and Chrome

The following code var descriptdiv = document.createElement("div"); document.body.lastChild.appendChild(descriptdiv); works in IE, but doesn't work in FireFox and Chrome. How can I get it to work ...
1
vote
2answers
116 views

Javascript: Unexpected Token ILLEGAL Error with appendChild()

I'm new to javascript, but I'm getting an "Unexpected Token ILLEGAL" error with this line of code: switch (city) { case "london": var newdiv = document.createElement('<div id="london" ...
1
vote
4answers
322 views

Javascript Append Child AFTER Element

I would like to append an li element after another li in a ul element using javascript, This is the code I have so far.. var parentGuest = document.getElementById("one"); var childGuest = ...
1
vote
2answers
172 views

Using appendChild with IE in Javascript

I am having trouble with this code in IE (with Chrome it seems to work fine): <html> <body> <script type="text/javascript"> var scriptContent = "var whatever=1"; var _js = ...
1
vote
4answers
281 views

Javascript: AppendChild

I am learning about "appendChild" and have thus far come till here (with a lot of help from others on SO) : <script> var blah="Blah!"; var t = document.createElement("table"), tb = ...
1
vote
1answer
118 views

Using Ajax request to create element and appendChild

Im trying to make a script to add an input field when a current one is clicked using ajax/appendChild but it is not working. Here is my script.. <script type="text/javascript"> function ...
1
vote
2answers
61 views

Why wont my appendChild work?

I have a little javascript app set up here: http://jsfiddle.net/faYMH/ What i want it to do is add a <div><h1>Hi there and greetings!</h1></div> after <div ...
1
vote
1answer
118 views

How can I use `appendChild` to add unlimited File Upload fields?

Im a little new to JavaScript. I am going to have a file upload field. I want to add an onclick to the file upload field to add additional file upload fields. So I'm thinking something like: i=0 ...
1
vote
1answer
299 views

appendChild doesn't work correctly in IE

I am trying to create a simple Modal window, but IE isn't cooperating. When I call this function in IE, the content appears at the bottom of the page under all content and the overlay image does not ...
1
vote
1answer
260 views

js script error in body.appendchild function

var loc=window.location.href,width="500px",height="450px"; var a=document.createElement("div"); a.id="xyz"; a.style.position="fixed"; a.style.width="500px"; a.style.height="450px"; a.style.top="0px"; ...
1
vote
4answers
294 views

Basic InnerHTML issue

this is the piece of code that I am using in a loop to append an HTML element to a Google Chrome Extension's popup(.html): 'wordlist' is an array of words. 'rand' is the Random number generating ...
1
vote
3answers
138 views

Appended control's CSS problem

I've developed a Javascript Bookmarklet that have apeended div to current page.But problem is that, when div and its content loaded because of pages' original CSS codes (Bookmarklet has its own CSS as ...
1
vote
3answers
410 views

getElementById().appendChild() refuses to work!

Im trying to append some JSON data from the last.fm API, I have been using alert() at several stages to verify the API is being parsed correctly and it is, This has led me to the conclusion that ...
1
vote
1answer
123 views

Appending JavaScript file reference after the last hard coded JavaScript file reference in the HEAD

Apologies if the following sounds a little strange. Am working in a legacy framework that allows no access to core templates so cannot alter the loading order of files. What i am trying to do is ...
1
vote
2answers
420 views

as3 create xml basic question

While I'm having no problems parsing incoming XML, I can't seem to construct valid outgoing xml. This is my code: myXML = <INFO> <imgname>testimage.jpg</imgname> ...
1
vote
1answer
1k views

Can't load Raphael.js library, appendChild method not found?

I'm trying to load raphael.js (downloaded and run locally) into an HTML file but the script refuses to exit, erroring out with this in my JS console: Uncaught TypeError: Cannot call method ...
1
vote
1answer
215 views

Adding a node to XMl

the XML <bookstore xmlns="http://www.contoso.com/books" xmlns:g="http://www.contoso.com/genre"> <book g:genre="novel" publicationdate="2010-03-01" ISBN="1-123456-15-0"> ...
1
vote
2answers
818 views

Firefox/XHTML: creating and appending nodes

I'm trying to replace a bunch of innerHTML references in code with DOM-compliant node stuff. <html> <body>hehe</body> <script type="text/javascript"> var myDiv ...
1
vote
4answers
1k views

appendChild + createElement

what's the difference between var div = document.createElement('div');//output -> [object HTMLDivElement] document.getElementById('container').appendChild(div); and var div = ...
1
vote
1answer
647 views

problem in using appendchild in IE7

Find below the js function that I'm using to add a new date field & 'Select Venue' link to an existing div with id 'coursedates' . Problem is this works fine in FF 3 & IE 8. It doesnt work in ...
1
vote
4answers
115 views

Client side javascript, creation of several elements and show each asap

Client side javascript code create some elements (about 50-100) in cycle: for (var i = 0; i < list.length; i++) { var obj = document.createElement("DIV"); obj.innerHTML = "<span ...
1
vote
3answers
224 views

Javascript not working?

For some reason this isn't working? I want to fill the ul#list with some items, but it's not working. var list = ""; for (var i = 0 ; i<=history.length; i++) { list += "<li ...
1
vote
2answers
343 views

Javascript appendChild name property

So I'm trying to add attributes to a radio button input, specifically the name attribute in Javascript. I'm appending children to a main object and when I use Object.setAttribute("name", value); and ...
1
vote
7answers
6k views

JavaScript IE appendChild() - Unexpected call to method or property access

I have been having this problem in IE. I have two divs which I use to drag selected elements from one to another. Lets say I have a child element (also a div) in div1 and some child elements in div2. ...
1
vote
2answers
852 views

appendchild on mouseover

I'm searching and displaying results from an xml file using combination of javascript and jquery. The results are displayed as thumbnails which upon clicking should bring up more information in jquery ...
0
votes
2answers
49 views

appendChild only works first time

I want to repeatedly append the same stuff to an element via a button and event handler on the same page. The problem I'm encountering is that it only works first time. It does exactly what I want ...
0
votes
0answers
39 views

Unexpected call to method or property access in IE7 and IE8

I am using jquery-1.3.2.min.js in my project. My application is working fine in all browsers except IE7 and IE 8. It throws following error. SCRIPT65535: Unexpected call to method or property ...
0
votes
2answers
52 views

Not working my javascript onblur function

I am having some problems with a javascipt function which I'm working on. Here is what I am trying to do with the function: I have a table element with a given value, and when there is a click on ...
0
votes
2answers
43 views

JavaScript RunTime Error : appendChild() - Unexpected call to method or property in IE8

I am getting runtime JS error like : "Unexpected call to method or property". Here is the code : var comboInput = document.getElementById("Combo"); var option1 = ...
0
votes
0answers
50 views

appendChild Does not work in GWT [closed]

I am trying to create simple html table in GWT. Code for table: public class SimpleTable extends Widget { private Element tr; public SimpleTable() { Element tableElem = ...
0
votes
4answers
72 views

Javascript Create Element in Two Divisions

I want to create an iframe using javascript and then insert it into two divisions both having id "fblike". I tried to use the following code but it did not work. <script type="text/javascript"> ...
0
votes
1answer
37 views

javascript getElementById appendChild error

i am having a problem with javascript and i dont know how to solve it. i am having this code function addtask(tab){ var tasktag = document.createElement('tr'); var task = ...
0
votes
1answer
42 views

Internet explorer Dom elements getElementById

Under Internet Explorer 8, when I try to copy a Div from a window to a pop-up the getElementById method doesn't return DOM elements but plain elements. I can't call appendChild on those sort of items ...
0
votes
5answers
99 views

jQuery Insert After Append?

I have the following HTML <ul> <li>Some stuff first<li> </ul> Basically I am using appendTo(ul) to append a bunch of stuff to this but I want it to actually append AFTER ...

1 2 3