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.

Using jsFiddle, I'm trying to test out the jQuery(...) function

<html>
  <body>
   <script>
     var section = jQuery("<div></div>");
     $("<p>This is a paragraph</p>").appendTo(section);
   </script>
  </body>
</html>

Why won't this code automatically render a HTML page with "This is a paragraph?"

share|improve this question

2 Answers

up vote 5 down vote accepted

You have to add section to the document. As it is it is just in a variable.

$('body').append(section);
share|improve this answer
this didn't work: section.appendTo(document.window); – Kevin Jan 10 at 15:29
not document window, $("Body") – Hogan Jan 10 at 15:30
hmmm... why doesn't it work? jsfiddle.net/WegBv/12 – Kevin Jan 10 at 15:33
1  
@Kevin Because you haven't selected jQuery from the list of libraries on the left – Richard Dalton Jan 10 at 15:34
thank you, Hogan and Richard Dalton. works - jsfiddle.net/WegBv/14 I'll accept answer when available – Kevin Jan 10 at 15:35

See my example here:

http://jsfiddle.net/9PaTE/

$(document).ready() was missing and you need to .appendTo('body')

share|improve this answer
is the onReady() part required due to the speed of using onReady rather than onLoad? – Kevin Jan 10 at 15:36
Without the .ready the script will execute before the elements exist in the DOM which means there is nothing to appendTo. OnLoad works as well I believe but I normally use .ready within JQuery. – webnoob Jan 10 at 15:37
so, if "This is a paragraph" shows up, then I got lucky? Is it a race condition then? – Kevin Jan 10 at 15:39
1  
AFAIK yes. It's always better to use $(function() { }); or $(document).ready(function(){}); to ensure the script has run after the DOM has loaded. – webnoob Jan 10 at 15:41
@Kevin - webnoob is exactly correct above -- never fear using jQuery's document ready feature -- it will just cause tears otherwise. – Hogan Jan 10 at 15:57

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.