(function($){ $.fn.picReg = function (options){ var settings = $.extend({ width: '308px', height: '20px' }, options); return this.each(function(){ var _commCode = ($(this).attr('data-commCode') ? $(this).attr('data-commCode') : ''); var _level = ($(this).attr('data-level') ? $(this).attr('data-level') : ''); if(_commCode == '') return; var _obj = $(this); $.get( '/run.html', 'c=admgood&f=picReg&commCode='+_commCode, function (data){ _obj.html(data); } ); }); } }) (jQuery)