I just did a test on a traditional web page. Here also, oddly, I do not get the information in javascript, except if this information has been put in javascript.
var t = document.getElementById (‘bananeAvecLaPeau’);
t.style.color;
[quote=182333:@olivier vidal]I just did a test on a traditional web page. Here also, oddly, I do not get the information in javascript, except if this information has been put in javascript.
var t = document.getElementById (‘bananeAvecLaPeau’);
t.style.color;
-> Result: “”
t.style.color = ‘green’
t.style.color;
-> Result: ‘green’
same for fontSize, etc.
(tested in Chrome console and Firefox console)[/quote]