Using hover class of css.
I have a label called "show" & i have a button. So basically i want to change the background of the button (want the same color of hover) when i hover on the label i.e i want to use btn:hover {} class which is already there in css.
show - > on hover -> addClass - > btn:hover {} to (btn)
$('.addingAction').hover(function() {
$('.btnRBlk').css({
//use hover class
}};
},function() {
});