cara membuat fungsi jQuery

(function( $ ){
   $.fn.myfunction = function() {
      alert('hello world');
      return this;
   }; 
})( jQuery );

$('#my_div').myfunction();
Obedient Okapi