jQuery value for 'right' on fixed element without 'px'

css, css-position, jquery

Solution

`parseInt()` returns the parsed integer.

var cssValue = $('#id').css('right'); //returns 20px
var parsedCssValue = parseInt(cssValue); //returns 20

Problem

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'); ```

Original source

Related problems