The code is the following:
var b = Number(document.getElementById('someElement').style.left); //0
var c = parseInt(document.getElementById('someElement').style.left, 10); //NaN
var d = parseFloat(document.getElementById('someElement').style.left); //NaN
Why cant I get the numeric value of the position of someElement
?