// plugin initialization
$.fn.greenify = function() {
// within the function you can use any of the jQuery methods
// and `this` context refers to jQuery object
this.css( "color", "green" );
};
// apply plugin
$( "a" ).greenify();