Use jQuery to see if an element exists
Published on 17 January 2014 at 10:28 by
You can use jQuery to see if an element exists by checking if the length of the jQuery object is > zero.
var exists = $('.your-selector-here').length > 0;
Probably the shortest snippet so far.