Esta é uma função existente melhorada em jQuery. Ele permite o método antigo ou todos em um retorno de chamada sem a necessidade de um if (). Consultar exemplo.
jQuery.fn.exists = function(fn) {
if(this.length>0) {
var f = arguments[0];
arguments[0] = function(e) {
f(e);
}
fn.apply( this, arguments );
return fn ? this.bind(name, fn) : this.trigger(name);
} else {
return this.length>0;
}
}
Exemplo
$(EXISTING_ELEMENT).exists(function(e) {
$(EXISTING_ELEMENT).removeClass('hidden');
});