I have a bug in IE8 when trying to get a property from css for an element with background image.
el.css({ 'background-position': "10px 10px"}); //set some
alert(el.css("background-position")); //get the value
In Opera, FF, Chrome, Safari works I get "10px 10px". Not in IE8 where I get undefined. I opened a bug report, but until then what do you think it will be a good workaround this problem. How should I get this values in some another way?