Trying to hide the <p class = "hide"> elements, then fade them in by clicking the <li> they are nested within...
$(document).ready(function(){
$("p.hide").hide();
$("li").click(function(){
("p.hide").fadein(1000);
};
);
};
and the HTML
<ul>
<li>Security</li>
<p class = "hide">Nulla pharetra facilisis ligula sed ultricies.</p>
<li>Scalability</li>
<p class = "hide">Nulla pharetra facilisis ligula sed ultricies.</p>
</ul>
Am I missing something here? Again, I'm new to jQuery/js and appreciate any help!