$(function(){ $(".web-tip").each(function(index,dom){ $(dom).webuiTip(); }); }); (function(){ $.fn.webuiTip = function(p){ if(!p) p = {}; if(p.content) $(this).attr("title",p.content); $("[title]",this).each(function(index,dom){ $(dom).tooltip(p); }); $(this).tooltip(p); }; })(jQuery);