vote up 1 vote down star

i am trying to appendChild() on an existing form, and its not working. i wonder if i need to delay the page, at least i thought i read that somewhere. what i am thinking is dynamically altering window onload to be a delay. do i grab the body tag like any other DOM element?

flag
Without seeing any code its difficult to know what you mean. – Rory Fitzpatrick Apr 16 at 22:34

3 Answers

vote up 2 vote down

Does this work?

window.addEventListener('load', function() {
    // Code to execute when DOM is loaded
}, false);

Steve

link|flag
newbie js question...when programming js, you must rely on memory about attributes and functions, there is not a tool that gives code assist? – bmw0128 Apr 16 at 22:12
Of course, memory helps (as it always does), but there are plenty of reference libraries out there. I particularly recommend the Mozilla Developer Centre (developer.mozilla.org/en/JavaScript). W3Schools is also good (w3schools.com/js/default.asp). – Steve Harrison Apr 16 at 22:27
are there any IDEs that are integrated, to get code assist like help? – bmw0128 Apr 16 at 22:47
I'm not sure. Try searching StackOverflow (stackoverflow.com/questions/tagged/… might be of help), and if you don't find anything, perhaps start an new question. – Steve Harrison Apr 16 at 22:58
vote up 1 vote down

you could use a timeout to delay the call to your method that does the appendChild()...

setTimeout(functionName, "200")

If you are using jQuery you can use the ready method to delay your code until the page is fully loaded:

$(document).ready(function() {
    appendChild();
});

Edit: Removed quotes around function call in setTimeout per Steve's suggestion in the comments

link|flag
2  
Don't quote the function in "setTimeout", as this calls "eval()". Rather, provide a function reference: "setTimeout(functionName, 200);". – Steve Harrison Apr 16 at 21:43
1  
don't answer with jQuery unless the asker says to. just because a library makes it easier does not mean they are using it. – geowa4 Apr 16 at 21:45
@Steve can you provide a reference for your statement? I have not come accross that before. – Jimmie R. Houts Apr 16 at 21:48
@George IV I provided an adequete sample in the first part of my answer to address the question. However, I do not see the harm in showing an additional jQuery sample, especially when using the jQuery solution is better than guessing how long the timeout needs to be. – Jimmie R. Houts Apr 16 at 21:59
@Jimmie R. Houts: See javascript.crockford.com/code.html and developer.mozilla.org/en/DOM/…. – Steve Harrison Apr 16 at 22:05
show 4 more comments
vote up 0 vote down

the body-element is referenced directly under document,

document.body

But your question is very fuzzy.

If you call your DOM-manipulation from the onload-event, the DOM should be completely loaded. Therefor I assume a delay isn't the way to go.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.