Title: Introduction to jQuery -Effects - Lesson II
Duration: 15:42 min
Description: This video continues the discussion of animation. In the first part if the video we start with a definition of 'Computer programming' within a span. Initially this definition is hidden. We create a button right above the span. When the user clicks on the button the difinition slides right under the button. The user can toggle this definition on/off as he/she clicks on the button. In the second part of the video, we create a similar idea by placing the definition of jQuery in a span. We place a button right above the definition (which is initially hidden). when the user clicks on the button, the definition is faded in.
Methodology: Using jQuery library.
Technologies: JavaScript, HTML, jQuery Examples constructed: The first example shows a span that contains the definition of 'Computer Programming' and a button right above it. When the user clicks on the button, the span definition is slide toggled on and off. The
second example shows the definition of jQuery in a span with a button above it. When the user clicks on the button, the definition is faded in.
Key words: jQuery, JavaScript, div, $(document).ready(), function, hide, slideToggle, click, fadeIn.