I need to assign a variable to the value of the border-color
property of my div
errorChartColorError = $('.col__item.error').css('border-color');
Although this code works fine in Chrome, Internet Explorer 11 returns it as undefined
When I inspect the element in IE, I can see the border-color property and its value clearly
Is there any specific hack needed for IE?