Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So here's the scenario I have a list that loads some HTML into a div depending on what's clicked:

<ul id="menu">
  <li id="empNav1" class="selected"><a href="#">Employer Overview</a></li>
  <li id="empNav2"><a href="#">Why We're Better</a></li>
  <li id="empNav3"><a href="#">Job Slots + Resume DB</a></li>
</ul>

<div class="subItem"></div>

--------- jquery------------

$(document).ready(function () {
   var sections = $("#menu li");
   var content = $(".subItem");


sections.click(function () {
    switch (this.id) {
        case "empNav1":
           content.html('<ul><li id="submenu1">11111</li><li>1111</li></ul>');
           break;
        case "empNav2":
            content.html('<ul><li id="submenu2">222222</li>li>22222</li></ul>');
            break;
        case "empNav2":
            content.html('<ul><li id="submenu3">333333</li>li>33333</li></ul>');
            break;
}
});
   $('li#submenu1').click(function {
       content.html('<ul><li id="submenu2">222222</li>li>22222</li></ul>');
       });     
    });

So my question is: how do I get the events to fire for content loaded in the .html event? I've tried a few things but none work. I want the loaded content to be able to fire events that effect the page.

share|improve this question

2 Answers

up vote 1 down vote accepted
$('li#submenu1').live('click', function {
    content.html('<ul><li id="submenu2">222222</li>li>22222</li></ul>');
});
share|improve this answer
Thank you Sir... Digital pat on the back. – Faraji Anderson Oct 11 '11 at 0:48
1  
@FarajiAnderson, thank you for the digital pat. It's not really related to the question you asked, but just for your info, you missed out the opening < of the second li tag. :) – Amry Oct 11 '11 at 0:53
Oh right. Yea I noticed that after the fact. Everything works fine though thanks. – Faraji Anderson Oct 11 '11 at 16:14

The problem stems from that content not being there on doc.ready. use this instead

$('li#submenu1').live(function {
   content.html('<ul><li id="submenu2">222222</li>li>22222</li></ul>');
   });     
});

and check out the .live docs http://api.jquery.com/live/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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