I am using the Jquery UI tabs, and want to change the properties of an element on mouseover.
My HTML is this:
<ul id="sub-tabs">
<li><a href="#000"><span>000<br /><p id="ct1">General</p></span></a></li>
</ul>...
And jquery is:
$('#guide-nav ul#sub-tabs span').mouseover(function() {
$("#guide-nav ul#sub-tabs li p").css("display", "none");
});
But this is not working.