Hi there, I’m after a little javascript to hide the second p tag within a div. If you could also include the onload (or whatever) bit as well that would be great. Thanks.
I’ve tried this:
$(document).ready(function(){ .CategoryDescription document.ElementById(".CategoryDescription p:second-child").style.visibility = "hidden"; }); });
and
$('.CategoryDescription>div>p>p').first().css(styles go here)
but neither seems to work.
in jQuery