vote up 4 vote down star

jQuery has height() en width() functions that returns the height or width in pixels as integer...

How can I get a padding or margin value of an element in pixels and as integer using jQuery?

My first idea was to do the following:

var padding = parseInt(jQuery("myId").css("padding-top"));

But if padding is given in ems for example, how can I get the value in pixels?


Looking into the JSizes plugin suggested by Chris Pebble i realized that my own version was the right one :). jQuery returns always value in pixels, so just parsing it to integer was the solution.

Thanks to Chris Pebble and Ian Robinson

flag

5 Answers

vote up 2 vote down check

There's a jQuery plugin called JSizes that does just this.

link|flag
vote up 8 vote down

You should be able to use CSS (http://docs.jquery.com/CSS/css#name). You may have to be more specific such as "padding-left" or "margin-top".

Example:

CSS

a, a:link, a:hover, a:visited, a:active {color:black;margin-top:10px;text-decoration: none;}

JS

alert($("a").css("margin-top"));

The result is 10px.

Update: If you want to get the "integer" value, you can do the following:

alert($("a").css("margin-top").replace("px", ""));
link|flag
I need to get the value as integer not as string and in pixels... – masterik Feb 26 at 13:52
I believe jQuery adds the "px" so we should be able to reliably expect its presence and remove it - see my edit above. – Ian Robinson Feb 26 at 14:33
I haven't checked if the jQuery method actually returns the "px" suffix or not, however the JSizes plugin from the other answer (which I ended up using) returns an integer when the return value is passed into ParseInt(...), just FYI. – Dan Herbert Aug 31 at 19:31
vote up 1 vote down

You can just grab them like any other CSS attribute:

alert($("#mybox").css("padding-right"));
alert($("#mybox").css("margin-bottom"));

You can set them with a second attribute in the css method:

$("#mybox").css("padding-right", "20px");
link|flag
vote up 0 vote down

Compare outer and inner height/widths to get the total margin and padding:

var that = $("#myId");
alert(that.outerHeight(true) - that.innerHeight());
link|flag
vote up 0 vote down

Maybe jQuery dimensions plugin somehow would be handy...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.