The solution I’ve found :
$("#address").on('blur focus', function() {
if (this.value=='') {
$('#button_submit').css('display', 'none');
}
});
solved Event when onblur input jquery
The solution I’ve found :
$("#address").on('blur focus', function() {
if (this.value=='') {
$('#button_submit').css('display', 'none');
}
});
solved Event when onblur input jquery