Not sure if I completely understand the question here.  Can you give an example of the HTML?  Are you talking:
 
<div id="parent">
    <div id="child">Stuff</div>
</div>
 
And hide child when you mouse off unless still over parent?  If that's the case, wouldn't it make more sense to:
 
$("#parent").hover(function(){ $("#child").show(); },function(){ $("#child").hide(); });

 
On 8/10/06, Acuff, Daniel (Comm Lines, PAC) <[EMAIL PROTECTED]> wrote:

Is it possible to do a check to see if the cursor is over a specified ID then do not fire a statement?

function hideChild(source) {
        var changeSource = document.getElementById(source);
        // if cursor in the area of ID homeMenu then DO NOT hide the div
        changeSource.className = "disNone";
}



*************************************************************************
This communication, including attachments, is
for the exclusive use of addressee and may contain proprietary,
confidential and/or privileged information. If you are not the intended
recipient, any use, copying, disclosure, dissemination or distribution is
strictly prohibited. If you are not the intended recipient, please notify
the sender immediately by return e-mail, delete this communication and
destroy all copies.
*************************************************************************

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/



_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to