Вы можете получить весь атрибут стиля и проанализировать его, потому что jquery получает эти значения только отдельно.
// All style attribute value
var strStyle = $('selector').attr('style');
// Find 'background' and store until the end.
strStyle = strStyle.substring(strStyle.indexOf('background:')+11);
// Strip the next rules
var strBackground = strStyle.split(';')[0];
Вы можете сделать это более кратко
var strStyle = $('selector').attr('style');
var strBackground = strStyle.substring(strStyle.indexOf('background:')+11).split(';')[0];
А теперь я могу помочь?