+ 1 - это кнопка с этими классами: class="esw eswd"
, а при наведении указываются: class="esw eswd eswh"
.вы можете получить этот элемент с помощью jQuery и управлять им: например:
// with jQuery:
$("button.esw.eswd").each(function(){
$(this).hover(function(){
// your mouseover code here:
$(this).addClass("some-class");
},function(){
// your mouseout code here:
$(this).removeClass("some-class");
});
});
///////////////
// or with css:
button.esw.eswd{
// mouseout style here
}
button.esw.eswd.eswh{
// mouseover style here
cursor:wait;
}