There are a few similar titles to this (for example, here, here and here), but I refuse to believe it's as complicated as they seem to indicate. The following gives the value '20px'. How can I get it to just return '20'?
var base=$('#id').css('right');
parseInt()
returns the parsed integer.
var cssValue = $('#id').css('right'); //returns 20px
var parsedCssValue = parseInt(cssValue); //returns 20
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With