if ($('#myElement').length > 0) {
// существует
}
//Или создаём отдельную функцию:
$.fn.exists = function(callback) {
var args = [].slice.call(arguments, 1);
if (this.length) {
callback.call(this, args);
}
return this;
};
// использование
$('div.test').exists(function() {
this.append('<p>I exist!</p>');
});