So Im setting up a menu that has different background :hover colors. The buttons backgrounds will be a grey color and upon hover the button animate() to its respective color.
I can grab the original default color of whatever button I hover over like this:
var origBackgroundColor = $(this).css('background-color');
But is it possible to get the color from a css :hover property that I set? I will have the :hover colors set for each button because if someone doesn't have JS enabled the navigation will still have :hover effects working.
Something like this(Or is there another way):
var hoverColor = $(this).css('background-color:hover');
Any ideas? is this possible?