mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-25 19:14:09 +03:00
improved detection of empty fields.
This commit is contained in:
parent
3a524fab83
commit
b06a754844
|
@ -31,14 +31,14 @@ $(function (){
|
||||||
});
|
});
|
||||||
|
|
||||||
$(document).on("keyup change", ".form-control", function() {
|
$(document).on("keyup change", ".form-control", function() {
|
||||||
if ($(this).val() !== "") {
|
var self = $(this);
|
||||||
$(this).removeClass("empty");
|
setTimeout(function() {
|
||||||
|
if (self.val() === "") {
|
||||||
|
self.addClass("empty");
|
||||||
} else {
|
} else {
|
||||||
$(this).addClass("empty");
|
self.removeClass("empty");
|
||||||
}
|
}
|
||||||
});
|
}, 1);
|
||||||
$(document).on("keydown change", ".form-control", function() {
|
|
||||||
$(this).removeClass("empty");
|
|
||||||
});
|
});
|
||||||
$(document)
|
$(document)
|
||||||
.on("focus", ".form-control-wrapper.fileinput", function() {
|
.on("focus", ".form-control-wrapper.fileinput", function() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user