[Solved] Event when onblur input jquery


The solution I’ve found :

$("#address").on('blur focus', function() {
    if (this.value=='') {
    $('#button_submit').css('display', 'none');         
     }
});

http://jsfiddle.net/np1wkh9p/17/

solved Event when onblur input jquery