I'm new to Javascript. With the code below, I'm interested in displaying three values. The first problem that I've encountered is the document.write won't work. What am I typing in wrong? The other problem is that I'd like to display the text that the first_div contains on the screen in the browser window. I believe that all of the divs in the first_div will show the text 'value.' How do I get this to display?
<html>
<head>
</head>
<body>
<div class= 'first_div'>
  <p>Content</p>
  <div class='comment'></div>
  <div class='comment'></div>
  <div id='pagination'></div>
</div>
  <script type='text/javascript'>
    document.write("Hello");
    jQuery(function() {
      $('#pagination').addClass('comment');
      $('.first_div.comment').text('value');
      $(document.body).append('hello');
  });
 </script>
</body>
</html>
 
    