Вот как-то так.
<script src="//code.jquery.com/jquery-latest.min.js"></script>
<script>
;(function($) {
$.fn.pluginName = function( settings ) {
var settings = $.extend( {
}, settings);
return this.each(function() {
var element = $(this);
$('.foo').click(function(){
alert($(this));
});
});
};
}) (jQuery) ;
</script>
<style>
.foo{
width:100px;
height:100px;
background: #000;
}
</style>
<button onclick="$(this).pluginName()">Нажми </button>
<button onclick="$(this).pluginName()">Нажми 2</button>
<div class='foo'></div>