I am trying to set a variable to be the value of my div border-color property value
errorChartColorError = $('.col__item.error').css('border-color');
This works fine in Chrome but Internet Explorer 11 returns the variable as undefined
When I inspect the element in IE, I can see the border-color property and value
Do I need an IE hack?
borderproperty?