vote up 0 vote down star

Hi.

How do I add a click event using addEventListener (window.onload) when the tags in question are being generated from the server (via an xmphttp request, no less)?

Thanks!

flag

3 Answers

vote up 0 vote down check

You have to apply the event hanlders after the elements have been inserted into the DOM

link|flag
I'm sorry but this is not true. Why would elements need to be "inserted into the DOM" for event listeners to be attached? – kangax Sep 11 at 19:10
1  
Because the DOM is what provides the events in the first place. Are you joking? – Josh Stodola Sep 11 at 19:30
2  
Well, you can add handlers before document insertion, but obviously you have to create the elements before adding the handlers. If you are writing innerHTML straight into the document, the acts of creation and insertion are the same thing; not so if you're doing it with DOM methods. – bobince Sep 11 at 22:16
True, but what good are the handlers if there is no way for the user to invoke them? – Josh Stodola Sep 11 at 23:03
1  
For example, by using Range and its createContextualFragment to convert string into a DocumentFragement. At that point, DocumentFragment does not need to be in a document (yet, string was converted into a fully functional DOM tree). Then you can do whatever you want with it, including document injection. But this is really irrelevant to my original reply to you. You said that elements need to be inserted into a DOM, not an HTML string. I corrected you by saying that elements do not need to be in a document in order to attach event listeners to them. Is it still unclear? – kangax Sep 12 at 19:18
show 3 more comments
vote up 0 vote down

You can try to handle events for parent elements, which are available as DOM loaded, then get element related to event.

<ul id="list">
  <li id="first">The first</li>
  <li id="second">The second</li>
  <li id="third">The third</li>
</ul>

document.getElementById('list').onclick(function(e){
  o = e.originalTarget;
  // if you click on second li o will bi the same as document.getElementById('first')
  // even if li with id "first" is inserted to DOM after creating this event handler to "list"
  // so here you can perform actions with it
  // hope it will help
});
link|flag
er, .click(function...)? That's jQuery, isn't it? – bobince Sep 11 at 22:17
oh sorry, right, there wil be .onclick() – Mushex Antaranian Sep 12 at 9:23
onclick is a property, not a function. – Crescent Fresh Sep 13 at 3:10
vote up 0 vote down

Thanks all.

I solved this by adding the below code to the "on success" event of the XMLHTTP request that populated the DOM with the elements coming from the server. That worked for me. Josh, you got my head moving in the right direction (although it would have been nice to see a code illustration) so I marked your response as the answer.

if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {

                        var m_sel=document.getElementById("fcat");

                        if (m_sel) {

                            var maxi = m_sel.options.length;

                            for( var i = 0; i < maxi; i++ )
                            {
                                var option = m_sel.options[i];
                                    option.addEventListener( "click", toggleElem, true );

                            }                                 

                        }        
}
link|flag

Your Answer

Get an OpenID
or

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