Title: Introduction to jQuery -Effects - Lesson I
Duration: 15:38 min
Description: This video will start the discussion of the animation effects using jQuery. We display a paragraph and a button on the page. Then we add jQuery code that allows us to show and hide the paragraph. Using show/hide is very powerful because they provide overloads to be able to control the timing, and more importantly you can be notified when the show/hide process finishes so you can execute some additional code.
Methodology: Using jQuery library.
Technologies: JavaScript, HTML, jQuery.
Examples constructed: This example creates a button and a paragraph. When the user clicks the button, the paragraph will show/hide (using toggle). We also add functionality so the paragraph will show/hide when the user clicks on it.
Key words: jQuery, JavaScript, div, $(document).ready(), function, click, hide, show, toggle.