im using this script to apply add_event_listener() when the DOM is already loaded...
document.addEventListener("DOMContentLoaded",regFunct,false);
then i list all the function inside regFunct function... all the function inside the regFunct which is loaded from the server are working except the newly created element using appendChild()....
function regFunct(){
//doSomething1
//doSomething2 (create new HTML element)
//doSomething3 (apply add_event_listener() after the new element created by doSomething2)
}
doDomething3 is not working...
doSomething1,doSomething2anddoSomething3look like? – roryf Jan 24 '11 at 12:13