I currently do this to check if one of two elements exists:
if ($(\".element1\").length > 0 || $(\".element2\").length > 0) { //do stuff... }
Just use .each().
$(".element1").each(function(){ //Do Something here }
Simple...