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.

I would like to fill out a div created through an AJAX request using jQuery.

It seems that I can't do it since my new DIV isn't in the DOM at the time I bind the event. Here is my code:

function updateNotice(content, type) {
    noticeName.html(content).addClass(type).show("slow");
}

noticeName is set to $( "#form-notice" ); in a global variable. But form-notice is a div that is sent from another ajax request (called before the one above), how can I fill it? Should I use jQuery.on()? How to use it?

share|improve this question

1 Answer

up vote 2 down vote accepted

You need to do this $( "#form-notice" ); after the html you get from your ajax call is rendered.

function updateNotice(content, type) {
noticeName = $( "#form-notice" );
noticeName.html(content).addClass(type).show("slow");
}
share|improve this answer
Thank you! I was doing noticeName = $( "#form-notice" ); right before the Ajax call.. thanks! – Dr. Dre Mar 13 '12 at 14:42
You are welcome :-) – mimo Mar 13 '12 at 14:50

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.