mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
7 lines
339 B
JavaScript
7 lines
339 B
JavaScript
|
$(function(){
|
||
|
//add hover states on the static widgets
|
||
|
$('.ui-state-default:not(.ui-state-disabled, .ui-slider-range, .ui-progressbar-value), a.ui-datepicker-next, a.ui-datepicker-prev, .ui-dialog-titlebar-close').hover(
|
||
|
function(){ $(this).addClass('ui-state-hover'); },
|
||
|
function(){ $(this).removeClass('ui-state-hover'); }
|
||
|
);
|
||
|
});
|