(function ($) { $.fn.setMaxLength = function (val) { return this.each(function () { $(this).attr("maxlength", typeof val == "string" ? $(this).attr(val) : val); }); }; })(jQuery); ... $("#foo").setMaxLength("alt"); ... $("#bar").setMaxLength(50);