Here is the CSS I am currently using:
#hideSidebarText:hover > #hideSidebarArrows {
background-position: -282px -51px;
}
I want to change the "background-position" property using JQuery. I attempted the code below, but it didn't work as intended:
$('#hideSidebarText:hover > #hideSidebarArrows').css('background-position', '-282px -31px');