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 am trying to make the drill down menu with back button using jquery for that i want to achieve the hover effect on button,for that i am using following jquery code-

     <script type="text/javascript">    
         $(function(){
               $('#hierarchy').menu({
                     content: $('#hierarchy').next().html(),
                     crumbDefaultText: ' '
               });

               $('#hierarchycrumb').menu({
                      content: $('#hierarchycrumb').next().html(),
                      backLink: false
               });
        });
share|improve this question
Need some html, and a link to the plugin you are using. – Marco Johannesen Oct 19 '12 at 11:21

3 Answers

up vote 1 down vote accepted

try this code.... $('.fg-button').hover(function(){ $(this).removeClass('ui-state-default').addClass('ui- state-focus'); }, );

share|improve this answer

If you are trying to achieve hover functionality with jQuery you can use something like:

$('#hierarchy').hover(function(){
 // Do something here
});

Or maybe you could explain more precisely what you are trying to do, can't make up much context with the code example.

share|improve this answer

Consider using CSS to define your button style for the hover state.

button:hover{
 color: #aaa;
 /*insert desired styles*/
}
share|improve this answer

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.