What is a jQuery Plugin?
A typical snippet of jQuery:
$(
'ul.pffft li'
).click(
function
()
{
$(
this
).hide();
}
);
‘click’ & ‘hide’ are jQuery functions
plugins (usually) add more functions