So erstellen Sie JQuery -Funktionen
(function( $ ){
$.fn.myfunction = function() {
alert('hello world');
return this;
};
})( jQuery );
$('#my_div').myfunction();
Obedient Okapi