How to make the open Toggle close when the second one starts?
When you click on the link with the class splLink, the block element splCont "opens". How to make it so that when you open another splCont, the previously open splCont closes?
<script type="text/javascript"> $(document).ready(function(){ $('.splLink').click(function(){ $(this).parent().children('div.splCont').fadeToggle('fast'); return false; }); }); </script>