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.

There is a div with id="upper_div". I have a script linked to my HTML page. Inside the script I have another div with id="lower_div". I want to use the div inside the script.

i.e I want to append the lower_div with upper_div. I'm not able to get the div inside the script.

<div id="upper_div"></div>

<script src="test.js" method="get" type="text/javascript">              
<div id="lower_div>
<p>"Test"</p>
</div>
</script>

any suggestions?

share|improve this question

2 Answers

use this

var html = "<div id='lower_div'><p>Test</p></div>";
$('#upper_div').append(html);
share|improve this answer

If you're using jQuery the following will work:

$('div#upper_div').append('<div id="lower_div"><p>"Test"</p></div>');

Here is a jsfiddle for you.

share|improve this answer
1  
$('#upper_div') is much faster than $('div#upper_div') – Gaurav Apr 25 '11 at 11:25

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.