|
|
@@ -6,11 +6,15 @@
|
|
|
if (this.readyState == 4 && this.status == 200) {
|
|
|
if( this.responseText.trim() == 'yes') {
|
|
|
console.log(this.responseText);
|
|
|
- $(customFields[0]).css('background-color', '#0f03');;
|
|
|
+ $(customFields[0]).addClass('has-success');
|
|
|
+ $(customFields[0]).removeClass('has-error');
|
|
|
+ $(customFields[0]).css('background-color', '#0f03');
|
|
|
$("#hint").text('');
|
|
|
} else {
|
|
|
console.log(this.responseText);
|
|
|
- $(customFields[0]).css('background-color', '#f003');;
|
|
|
+ $(customFields[0]).addClass('has-error');
|
|
|
+ $(customFields[0]).removeClass('has-success');
|
|
|
+ $(customFields[0]).css('background-color', '#f003');
|
|
|
$("#hint").text('Domain ' + $(customFields[0]).val() + ' nicht verfügbar!');
|
|
|
}
|
|
|
}
|