Archivo Jquery
--------------
jQuery(document).ready(function($){
$.plugin = function(option){
option = $.extend({
div : "#selector",
texto : "hola"
}, option);
function prueba(texto){
return texto;
}
var texto = option.texto,
$contenedor = $(option.div);
var a = prueba(texto);
$contenedor.text(a);
};
})
Llamado de plugin Jquery
-----------------------
$.plugin({
texto : 'cambio',
div : '.sel'
});
$.plugin();
$.plugin({
texto : 'otro texto'
})