I am trying to check for the existence of an adjacent (next) selector but I am clearly writing it incorrectly...
My HTML
<div id="container">
<div class="about"></div>
<div class="related"></div>
</div>
My jQuery:
jQuery(document).ready(function() {
console.log(jQuery("div.about").next().hasClass(".related"));
if (jQuery("div.about").next().hasClass(".related"))
{
console.log("do something");
}
});
My first console.log shows FALSE and my second isn't showing at all...
jQuery("div.about").next().hasClass(".related")is false. It's not going inside yourifblock – Homer Apr 8 '11 at 15:25jQuery(".about + .related")). You rep at 666 right now is scaring me away... :) – Wesley Murch Apr 8 '11 at 15:25