, one for each <a> in the <ul>
<p id="001">
must be hide, but the <p
id=001> must be show
i've writed this code in jquery for the case "001" and is run
perfect, but a need do it general for all <a> but without
those elements will have a priori
<script type="text/javascript">
$(document).ready(function (){
$("#content p").toggle();
$("#menu ul li a#001").click
(
function showhide()
{ $("#content p#001").toggle("slow"); }
)
}
)
</script>
understand me?
thanks in advance