Verifique se o elemento existe - CSS-Tricks

Anonim
if ($('#myElement').length > 0) ( // it exists )

Ou torná-lo uma função sofisticada com um retorno de chamada:

// Tiny jQuery Plugin // by Chris Goodchild $.fn.exists = function(callback) ( var args = ().slice.call(arguments, 1); if (this.length) ( callback.call(this, args); ) return this; ); // Usage $('div.test').exists(function() ( this.append('

I exist!

'); ));