Has someone knows why this four lines of jquery code:
var newFontSize = settings.FontSize + 'em !important';
_log(newFontSize);
$('div[data-role="section"]').css("font-size", newFontSize);
_log($('div[data-role="section"]').css( "font-size"));
returns this messages in the output:
1.1em !important
14px
I have been watching my code for hours and I do not know where is my mistake.
Thank you in advance,