
In this tutorial we are going to make a very simple jQuery plugin. Sometimes its important just to see the simple first step, instead of getting caught in the complexities of detail. So lets start writing the our Hello World Plugin sayHello.
(function ( $ ){
$.fn.sayHello=function(){
this.html("Hello World from jQuery Plugin");
...