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
});
});
try this code….
$(‘.fg-button’).hover(function(){ $(this).removeClass(‘ui-state-default’).addClass(‘ui- state-focus’); },
);