Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I already know how to check elements that are there when the document is ready:

jQuery.fn.exists = function () { 
  return jQuery(this).length > 0; 
}

But this method doesn’t know elements that are added with AJAX. Does anybody know how to do that?

share|improve this question

2 Answers

up vote 2 down vote accepted

The method does once the ajax is loaded and appended to the DOM. You could rewrite it a bit:

jQuery.existsin = function (what, where) { 
  return jQuery(where).find(what).length > 0; 
}

The you could on ajax success :

function(data, status){
  if(jQuery.existsin('selector', data)){
    //do foo
  }
}
share|improve this answer
1  
would it be smart to specify "body" as a "default where" ? – Labuschin Dec 4 '09 at 13:13
thank you! that works for me! – Labuschin Dec 4 '09 at 13:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.