What does $( ‘someElement’ ) do?
Is a function that turns ‘someElement’ into a jQuery object.
what does fadeTo( ) do and what are it’s arguments?
fadeTo creates an animation effect of fading in. It’s arguments are: the speed in which to fade to and the opacity in which to fade to in that order. i.e. $(‘div’).fadeTo(‘slow’, ‘0.8’);
What are the parts of a jQuery function?
What is an event handler?
It is the action that causes a function to occur.