See Announcements
Fabrik.loader.stop(this.element);
// repeat groups in table format don't have anything to attach a tip msg to!
var t = this.tips();
if (Fabrik.bootstrapped && t.length !== 0) {
this.addTipMsg(msg);
} else {
var raw_msg = jQuery(msg).text();
a = new Element('a', {
'href': '#', 'class':'text-danger', 'text': raw_msg, 'events': {
'click': function (e) {
e.stop();
}
}
});
// a.adopt(this.alertImage);
a.prepend(this.alertImage);
Fabrik.tips.attach(a);
}
errorElements[0].adopt(a);
However I'm wondering why a "<a>" element rather than a <span> as for the non ajax validation....