What is a jQuery Plugin?
A typical snippet of jQuery:
$(
'ul.pffft li'
).click(
function
()
{
$(
this
).hide();
}
);