jQuery Get CSS Value As an Integer
Problem
In jQuery, getting a numeric property returns a string.
What if we want a css property value as an integer or float?
Solution
parseInt($('#elem').css('top')); parseFloat($('#elem').css('top'));
Problem
In jQuery, getting a numeric property returns a string.
What if we want a css property value as an integer or float?
Solution
parseInt($('#elem').css('top')); parseFloat($('#elem').css('top'));