Hola!
Dado el siguiente script:
function scrollThumb(direction) {
if (direction=='Go_L') {
$('#contenedornota').animate({
scrollLeft: "-=" + 100 + "px"
}, function(){
});
}else
if (direction=='Go_R') {
$('#contenedornota').animate({
scrollLeft: "+=" + 100 + "px"
}, function(){
});
}
}
¿Cómo hago para agregar ¨hover¨?
El objetivo es que genere esa misma animación al posicionar el mouse sobre los botones Go_L y Go_R.
Espero haber sido claro.
Muchas gracias!