Support chaining 

(function ($) {
  "use strict";

  $.fn.highlight = function() {
    return this.css('border', '2px dotted #ff9000');
  };

})(jQuery);