var that = $(this)
,idTemplateAttr = getOrSetTemplate(that,"id")
,nameTemplateAttr = getOrSetTemplate(that, "name")
,idAttr = that.attr("id")
,nameAttr = that.attr("name")
/* Normalize field name attributes */
newNameAttr = nameTemplateAttr ? nameTemplateAttr.replace(options.indexFormat, index) : nameAttr;
that.attr("name", newNameAttr);
/* Normalize field id attributes */
newIdAttr = idTemplateAttr ? idTemplateAttr.replace(options.indexFormat, index) : idAttr;
idAttr ? form.find("label[for='"+idAttr+"']").each(function(){
$(this).attr("for", newIdAttr);
}) : null;
that.attr("id", newIdAttr);
sheepit/jquery.sheepItPlugin.js
Line 155 in 7318e91
normalizeFieldsForForm()function through an error in case the element (input) had nonameoridattributesBelow is my suggestion for the fix: