I am making a RTS game in Javascript and HTML. Sounds ambitious I know but I\'m not shooting for the stars here. Just a little something to keep me entertained.
I
An alternative approach to the one from Konsolenfreddy, is to use:
var numericValue = window
.getComputedStyle(document.getElementById('div'),null)
.getPropertyValue('left')
.match(/\d+/);
JS Fiddle demo.
The benefit of this approach is that it works to retrieve the value set in CSS, regardless of that value being set in the style
attribute of the element or in a linked stylesheet, which I think Konsolenfreddy's approach is limited by.
References: