jorgeh90 / homework-relaxr-final

0 stars 0 forks source link

Assignment #4 - relaxr jQuery #2

Open barryross opened 8 years ago

barryross commented 8 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's content slide down and appear on the page, both on the main content column and the side bar; users should also be able hide the content when they are finished reading. See a detailed technical explanation below.

Student: Jorge Hernandez

Project URL: https://github.com/jorgeh90/homework-relaxr-final

Technical Requirements Does Not Meet Expectations (0) Meets Expectations (1) Exceeds Expectations (2)
Use in-line-block or floats in your CSS to achieve a two-column layout- Prevent a form submission 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 `tag slide down along with a "Read Less" link in the blog post using,`$.slideDown()`and`$.show() x
Hide the "Read More" link using $.hide() x
Have the `slide up and hide the "Read Less" link using,`$.slideUp()`and`$.hide() x
Show the "Read More" link using $.show() x
Using the same functions as above, if a user clicks the "Learn More" link in the sidebar, have the inside that slide down and hide the "Learn More" link using $.slideDown() and $.hide() x
TOTAL: 8/16
barryross commented 8 years ago

Hey Jorge,

Nice work getting much of the functionality I was looking for. Although your use of conditionals was clever/creative, which is great, I was looking for the particular methods in the requirements to be used, such as slideDown(), show(), hide(), slideUp() etc. so that is why some points were taken off. Please let me know if you have questions about the particular methods I was looking for. Thanks!