noganno
11/10/2013 - 11:02 AM

Проверка существования элемента.js

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>');
});