A functional example 

(function($) {

    $.fn.highlight = function() {
        this.each(function() {
            $(this).css({
                'background-color': '#ffffcc',
                'border': '1px dotted #ffdd66'
            });
        });
        return this;
    }

})(jQuery);