Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

No late submission will be accepted. Your web page MUST and run without error. U

ID: 3814161 • Letter: N

Question

No late submission will be accepted. Your web page MUST and run without error. Use DOM 1 + Your Last Name + First Letter of Your First Name as your file name. Note that no space or special character other than underscore should be used in the name. For instance, for me. the name of my file should be DOM 1 DingW.html. Violation of naming requirement will result in 3 points cut. In the HTML comment tags, at the very beginning of the HTML, you should put your full name, the course number and name (COP 3834-01 Web Application Development), the name of lab, e.g. DOM1, and the date. Without this, 5 point will be cut. Write a complete webpage with embedded JavaScript code that prints out all cell text of a sole table on this webpage to the content of the at the bottom of this page. One cell text should be printed in one line, followed by a line break. The printout should show up at the bottom of the page. The getElementsByTagNameO method must be used, otherwise 50% deduction will be applied.

Explanation / Answer


<!-- MOHAMMED ZUBAIRUDDIN COP 3834-01 Web Application Development -->

<html>

<head>

    <title> COP 3834 </title>

    <script type="text/javascript">
      function printCells() {
        var cells = document.getElementsByTagName("TD");
        var finalText = "";
        for(i = 0;i < cells.length; i++)
        {
          finalText = finalText + cells[i].innerHTML + "<br>";
        }
        document.getElementById("cell_contents").innerHTML = finalText;
      }
    </script>

</head>

<body>

    <div class = "container">
      <table border="5" bordercolor="red">
        <tr>
            <td>
              Logan
            </td>
            <td>
             La La Land
            </td>
            <td>
             Lion
            </td>
            <td>
             Shawshank Redemption
            </td>
            <td>
              Twelve Angry Men
            </td>
        </tr>
        <tr>
          <td>
            Wolverine
          </td>
          <td>
           Clash of the Titans
          </td>
          <td>
            War of the worlds
          </td>
          <td>
           Sherlock Holmes
          </td>
          <td>
            Lord of the rings
          </td>
       </tr>
         <tr>
           <td>
             Star Wars
           </td>
           <td>
            Fight Club
           </td>
           <td>
            Little Miss sunshine
           </td>
           <td>
            Lincoln
           </td>
           <td>
             Animal Planet
           </td>
        </tr>
      </table>
    </div>
    <br>

    <div>
      <button >Print Cells Content</button>
      <p id="cell_contents"> </p>
    </div>

</body>
</html>

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote