I have problem witch change style border-left-color in next button, if main button is hover, and I need same function for “focus” => if main button is “focus”.
Thanks for help
$("button").hover(
function () {
$(this).nex("button").css("border-left-color", "#6e6e6e");
},
function () {
$(this).nex("button").css("border-left-color", "#bdbdbd");
}
);
Use CSS only: