Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a div("dv1") with AJAX update panel inside which contains multiple dropdown controls. These controls do a postback when the index is changed. Then I use a jQuery hover function like the one below:

$('#lblDate').hover($('#dv1').slideDown(),$('#dv1').slideUp());

This works fine when I hover on the label, but whenever I try to select something on any dropdown, the div slides up. Anyone knows a workaround on this?

Thanks

share|improve this question
Your question is unclear. Can you explain exactly what the problem is? – SLaks Mar 3 '10 at 2:02
please let me know which is unclear on the question...thanks – hallie Mar 3 '10 at 7:42

1 Answer

You need to pass functions to hover instead of invoking them, like this:

$('#lblDate').hover(
    function() { $('#dv1').slideDown(); },
    function() { $('#dv1').slideUp(); }
);

Also, you need to use ASP.Net's ClientIDs for your controls, like this:

$('#<%= lblDate.ClientID %>')...

To answer your question, you probably want to wrap the label and the dropdown in a <div> and hover on that.

share|improve this answer
still the same...=( – hallie Mar 3 '10 at 2:04
I actualy put the label on the div and the lblDate is a div ID...sorry for the confusion. But the real problem is that when the dropdown gets the focus the .slideUp() method fires up. – hallie Mar 3 '10 at 2:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.