On http://jsfiddle.net/Xs9e2/ there are two elements, named ONE and TWO. The element ONE is positioned by assigning to the style property of the DOM element using JavaScript. The element TWO is positioned using CSS.
The HTML renders as expected.
There is a button one can press to have the left and top properties of each of the two elements alerted. We only see the properties that were set in JavaScript, not the ones set in CSS.
What is the reason for this exactly? Shouldn't we be able to read the CSS properties via JavaScript? I may have specified something incorrectly. I know about the "offset" properties and I know about JQuery; I'm just puzzled why this old-fashioned DOM manipulation isn't working as I would expect. What am I missing?
console.loginstead ofalert– zzzzBov Nov 30 '12 at 6:07one at ["10px","30px"]two at ["",""]logged on the console. I am using Chrome 23.0.1271.64 on Mountain Lion if that helps. And even if I logtwo.styleto see all the properties,topandleftare actually there, and they are both the empty string. – Ray Toal Nov 30 '12 at 6:10console.dir(someDomNode)in Chrome or Firefox will allow you to inspect the element's properties to see what's available. – zzzzBov Nov 30 '12 at 6:11styleproperty to the comment in an edit. – Ray Toal Nov 30 '12 at 6:12