lilliizumi / Assignments

0 stars 1 forks source link

Feedback on assignment #4 #1

Open barryross opened 7 years ago

barryross commented 7 years ago

FEWD Week #4 Project: JavaScript Basics


Description

The team from Relaxr is back...again! They want their page to be more interactive and asked you to add JavaScript to their source code. You've been given the HTML and CSS but will need to create a JavaScript file and add a few different pieces of interactivity: Users should be able to click a link and have the remainder of the blog articles' content slide down and appear on the page; users should also be able hide the content when they are finished reading. See a detailed technical explanation below.

Student: Lilli Izumi

Project URL: https://github.com/lilliizumi/Assignments

Technical Requirements Does Not Meet Expectations (0) Meets Expectations (1) Exceeds Expectations (2)
Prevent a page-refresh (when any of the "read more/read less" link is clicked) with the event.preventDefault() function x
Use the $.ready() handler to delay your code from executing until all DOM assets have been loaded x
Select the appropriate DOM elements with CSS selectors upon a user's click using the $.click() handler x
Have the text in the <p> tag (with id="first-read-more-text" ) slide down along with a "Read Less" link in the blog posts using $.slideDown() and $.show() x
Hide the relevant "Read More" link using $.hide() x
Have the text in the <p> tag (with id="second-read-more-text") slide down along with a "Read Less" link in the blog posts using $.slideDown() and $.show() x
Hide the relevant "Read More" link using $.hide() x
Have the <p> (with id="first-read-more-text") slide up and hide the "Read Less" link using $.slideUp() and $.hide() x
Show the relevant "Read More" link using $.show() x
Have the <p> (with id="second-read-more-text") slide up and hide the "Read Less" link using $.slideUp() and $.hide() x
Show the relevant "Read More" link using $.show() x
TOTAL: 22/22 x
barryross commented 7 years ago

Great work on this assignment Lilli! I have some comments about how you can reduce the amount of code you have here, but great work being so organized and specific with your selectors and function names! Please see inline comments for additional info!