diff --git a/source/Ox.UI/js/Form/Ox.Input.js b/source/Ox.UI/js/Form/Ox.Input.js index f18db9c4..b2c1a620 100644 --- a/source/Ox.UI/js/Form/Ox.Input.js +++ b/source/Ox.UI/js/Form/Ox.Input.js @@ -788,6 +788,12 @@ Ox.Input = function(options, self) { .val(self.options.value) } } + } else { + if (self.options.value === '') { + self.$input + .removeClass('OxPlaceholder') + .val(''); + } } }