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?"