Question 1: jQuery - Dynamic Content Update

Objective: Use jQuery to dynamically update a p element with user input from an input field when a button is clicked.

jQuery Dynamic Update

output

0/24 # Question 2: Thymeleaf - Displaying a List of Items Objective: Use Thymeleaf to display a list of students stored in a backend Java controller. Info you may need: - student.getStatus(): Returns True if the student passed, returns False if the student failed - student.getName(): Returns student name - student.getGrade(): Returns student grade Student List

Student List

Name Grade Status
# Bonus Question: Why is Thymeleaf better than creating a regular table? What are any potential pros and cons of Thymeleaf tables? Thymeleaf is better than regular tables for it's ability to dynamic data population and direct integration with Java. The positives Thymeleaf provides over a normal table would be it's power (logic with conditionals, etc,) but it's a negative as it's a lot more complex as not every table needs to have code logic and such.