How can I check the existence of an element in jQuery?
The current code that I have is this:
if ($(selector).length > 0) { // Do something } <
Yes!
jQuery.fn.exists = function(){ return this.length > 0; } if ($(selector).exists()) { // Do something }
This is in response to: Herding Code podcast with Jeff Atwood