Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a jQuery plugin and something I need to be able to do is determine the width of an element that the user specifies. The problem is that .width() or .css('width') will always report exact pixels, even if the developer has assigned it e.g. width:90% with CSS.

Is there any way to have jQuery output the width of an element in px or % depending on what the developer has given it with CSS?

share|improve this question
2  
This question seems to be asking two orthogonal questions; please consider revising. The two questions are: 1) 'How can I get the width of an element, in %?' (from the title) and 2) 'How can I get the CSS value specified in the style-sheet?' (from the body). – user166390 Oct 24 '10 at 1:25

5 Answers

up vote 22 down vote accepted

I'd say the best way is to compute it yourself:

var width = $('#someElt').width();
var parentWidth = $('#someElt').offsetParent().width();
var percent = 100*width/parentWidth;
share|improve this answer
@downvoter: any comments for me? – Matt Ball Oct 24 '10 at 2:43
1  
Thanks, that would certainly work, but I wanted to have the script automatically determine whether the developer specified a percent or pixel, which I don't think can be done so I'll just add it as an option that they can pass to the plugin. – joren Oct 24 '10 at 15:29
1  
@joren - Please revise your question title. It contradicts the meaning of your actual question. – Peter Ajtai Oct 24 '10 at 16:39
@joren: I saw that you revised your question title. Do you have further questions? – Matt Ball Oct 25 '10 at 14:25
Not really, I still ended up deciding to just add setting the percent of the div as an option to my plugin, it seemed the best course of action after this discussion. Thanks! – joren Oct 27 '10 at 15:44
show 1 more comment

The way to do it is documented in this stackoverflow question.

http://stackoverflow.com/questions/324486/how-do-you-read-css-rule-values-with-javascript

The only thing you have to know is in which stylesheet is the class or loop through all the stylesheets. The following function gives you all the features of the class, it would be easy to do a regex to extract the feature you look for.

function getStyle(className) {
    var classes = document.styleSheets[0].rules || document.styleSheets[0].cssRules
    for(var x=0;x<classes.length;x++) {

        if(classes[x].selectorText==className) {
                (classes[x].cssText) ? alert(classes[x].cssText) : alert(classes[x].style.cssText);
        }
    }
}
getStyle('.test');
share|improve this answer
How does this return a percent if the orginal style is either not in a percent or it is not defined? – Peter Ajtai Oct 24 '10 at 0:40
The question is: "Is there any way to have jQuery output the width of an element in px or % depending on what the developer has given it with CSS?", that is to say the user is asking to ouput what is in the css. – netadictos Oct 24 '10 at 7:16
I see. I was going off the title: Getting jQuery .width() to output percentage instead of px?. The question body contradicts the title. It's unclear what the OP wants. – Peter Ajtai Oct 24 '10 at 16:38

I think you can use stylesheet ('style') object access directly. Even then, YMMV by browser. e.g. elm.style.width.

Edit for Peter's comment:: I am not looking to 'get a %'. As per the question:

I need to be able to do is determine the width of an element that the user specifies ... [is there a way to] output the width of an element in px or % depending on what the developer has given it with CSS?

Thus I provided an alternative to retrieve the "raw" CSS value. This appears to work on FF3.6. YMMV elsewhere (netadictos's answer may be more portable/universal, I do not know). Again, it is not looking to 'get a %'.

share|improve this answer
How does this return a percent? – Peter Ajtai Oct 24 '10 at 0:38
1  
I see. I was going off the title: Getting jQuery .width() to output percentage instead of px?. The question body contradicts the title. It's unclear what the OP wants. – Peter Ajtai Oct 24 '10 at 16:38

For my purposes I extrapolated off MДΓΓ БДLL's answer.

Keep in mind, I'm only working with whole percentages.

    var getPercent = function(elem){
        var elemName = elem.attr("id");
        var width = elem.width();
        var parentWidth = elem.offsetParent().width();
        var percent = Math.round(100*width/parentWidth);
        console.log(elemName+"'s width = "+percent+"%");
    }

    getPercent($('#folders'));
    getPercent($('#media'));
    getPercent($('#player'));
share|improve this answer

If you are looking to reassign the original elements percentage to a new percentage, it is a good practice to define that value in CSS and modify the elements identifier in some way (class, id, etc) to reflect the new CSS definition. This does not always apply if the new percentage variable needs to be variable.

.myClass{
    width:50%;
}

.myNewClass{
    width:35%;
}

Adding a removing via this (or other) method:

$('.myClass').removeClass('myClass').addClass('myNewClass');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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