I'm working on dynamic web pages and I'm mostly working with jQuery and php.
In jQuery is the section of jQuery-ui that elaborates a series of themes that can be modified dynamically. But there are some things that seem bug. Below the explanation:
I change the color of the border
$('.ui-widget-header').css('border-color','#FF0000');
and then I try to see the value
console.log($('.ui-widget-header').css('border-color'));
and it returns ""
. Can you tell me the reason?