Given the following HTML structure:
<div id="wrapper">
<div id="top">
<a href="http://example.com" class="link">click here</a>
</div>
<div id="middle">
some text
</div>
<div id="bottom">
some text
</div>
<div>
How would I select the bottom div (div#bottom) using JQuery when a user clicks on the link in the top div (div#top)? There will be several of these divs on the page, so I can't just use $('#bottom'). $(this).next('#comment-form') also did not work.
#bottomelements on that page,idattributes must be unique within each page or you'll get lots of odd things happening. – mu is too short Jul 17 '11 at 4:17