Если поле пустое, когда оно размыто (теряет фокус), я хочу удалить изображение:
Вот начальный код:
$('#type').keyup(function(){
$('#image').show();
$("#type").blur( function() {
// i wanted to check here if #type field is empty as well before hiding?
$('#image').hide();
});