im trying to get the left property using jQuery where the css is written as
#sldn_mnu li:hover ul ul {left:-6000;}
below is my alert which outputs (-7000) which is the left prop. of this style: #sldn_mnu ul ul {left:-7000;}. any ideas? thanks.
alert($('#sldn_mnu li').hover().find('ul ul').css('left'));
relavant html: im trying to talk to the secondary < ul> Items 1.1.1 dropdown.
<div id="sldn_mnu">
<ul>
<li><a href="#">HELLO</a></li>
<li class="sldn_mnu-drop"><a href="#" ><span class="sldn_mnu-label">WORK</span></a>
<ul>
<li class="sldn_mnu-subDrop"><a href="#">Item 1.1</a>
<ul>
<li><a href="#" >Item 1.1.1</a></li>
<li><a href="#" >Item 1.1.2</a></li>
</ul>
</li>
<li><a href="#" >Item 1.2</a></li>
<li><a href="#" >Item 1.3</a></li>
</ul>
</li>
<li><a href="#" >Item 2</a>
<ul>
<li><a href="#" >Item 2.1</a></li>
<li><a href="#" >Item 2.2</a></li>
<li><a href="#" >Item 2.3</a></li>
</ul>
</li>
<li><a href="#">Item 3</a></li>
</ul>