これを機能させようとしましたが、エラーが発生し続けます。ここにjsfiddleがあります:
うまくいけば、私はこれを完全に台無しにしていません。
JS:
$(document).ready(function() {
$('#showIt').click(function() {
$('#otherObject').hide();
});
});
HTML:
<section id="main">
<header>
</header>
<article>
<a id="showIt" href="">Show only one</a>
</article>
<footer>
</footer>
</section>
<section id="otherObject">
<header>
</header>
<article>
<img src="tdk.jpg">
</article>
<footer>
</footer>
</section>
<section id="otherObjectTwo">
<header>
</header>
<article>
</article>
<footer>
</footer>
</section>
<section id="otherObject3">
<header>
</header>
<article>
</article>
<footer>
</footer>
</section>