Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way in jQuery to get all CSS from an existing element and apply it to another without listing them all?

I know it would work if they were a style attribute with attr(), but all of my styles are in an external style sheet.

share|improve this question

3 Answers

up vote 133 down vote accepted

A couple years late, but here is a solution that retrieves both inline styling and external styling:

function css(a){
    var sheets = document.styleSheets, o = {};
    for(var i in sheets) {
        var rules = sheets[i].rules || sheets[i].cssRules;
        for(var r in rules) {
            if(a.is(rules[r].selectorText)) {
                o = $.extend(o, css2json(rules[r].style), css2json(a.attr('style')));
            }
        }
    }
    return o;
}

function css2json(css){
        var s = {};
        if(!css) return s;
        if(css instanceof CSSStyleDeclaration) {
            for(var i in css) {
                if((css[i]).toLowerCase) {
                    s[(css[i]).toLowerCase()] = (css[css[i]]);
                }
            }
        } else if(typeof css == "string") {
            css = css.split("; ");          
            for (var i in css) {
                var l = css[i].split(": ");
                s[l[0].toLowerCase()] = (l[1]);
            };
        }
        return s;
    }

Pass a jQuery object into css() and it will return an object, which you can then plug back into jQuery's $().css(), ex:

var style = css($("#elementToGetAllCSS"));
$("#elementToPutStyleInto").css(style);

:)

share|improve this answer
32  
+1 better late than never :) – alex Apr 29 '11 at 10:10
5  
BTW, when you say a JSON object, you just mean a JavaScript object right? – alex Apr 29 '11 at 10:11
3  
^yes, sorry about that. – marknadal Apr 30 '11 at 0:40
1  
+1 Mark, great solution which i've just given credit to in this answer :) – Town Jul 28 '11 at 11:46
2  
this looks awesome, but when I'm trying it it misses out on certain properties such as font-family. – Damon Aug 18 '11 at 19:56
show 13 more comments

Two years late, but I have the solution you're looking for. Not intending to take credit form the original author, here's a plugin which I found works exceptionally well for what you need, but gets all possible styles in all browsers, even IE.

Warning: This code generates a lot of output, and should be used sparingly. It not only copies all standard CSS properties, but also all vendor CSS properties for that browser.

jquery.getStyleObject.js:

/*
 * getStyleObject Plugin for jQuery JavaScript Library
 * From: http://upshots.org/?p=112
 */

(function($){
    $.fn.getStyleObject = function(){
        var dom = this.get(0);
        var style;
        var returns = {};
        if(window.getComputedStyle){
            var camelize = function(a,b){
                return b.toUpperCase();
            };
            style = window.getComputedStyle(dom, null);
            for(var i = 0, l = style.length; i < l; i++){
                var prop = style[i];
                var camel = prop.replace(/\-([a-z])/g, camelize);
                var val = style.getPropertyValue(prop);
                returns[camel] = val;
            };
            return returns;
        };
        if(style = dom.currentStyle){
            for(var prop in style){
                returns[prop] = style[prop];
            };
            return returns;
        };
        return this.css();
    }
})(jQuery);

Basic usage is pretty simple, but he's written a function for that as well:

$.fn.copyCSS = function(source){
  var styles = $(source).getStyleObject();
  this.css(styles);
}

Hope that helps.

share|improve this answer
1  
This has been updated – Damon Aug 22 '11 at 13:31
2  
@Damon: Thanks! I've updated my post, and edited the wording slightly to make it clear that this is not my work. Sorry about the previous wording, I think I typed this answer up late at night, but either way, it was pretty douchey. – Dakota Aug 23 '11 at 5:35
Worked like a charm – Ally Aug 30 '12 at 11:41
Does not work properly with opera ;( – yckart Jan 6 at 2:52
it's been updated to work with opera – Big MoMo Jan 27 at 19:09

Why not use .style of the DOM element? It's an object which contains members such as width and backgroundColor.

share|improve this answer
1  
I'm pretty sure this is the only way to get the actual styles associated with the class. (as opposed to the calculated styles which are different) – altCognito Apr 16 '09 at 3:31
1  
erm..how? can you show an example? – Nimbuz Feb 4 '10 at 8:43
1  
@Nimbuz, Maybe this will help: w3schools.com/jsref/dom_obj_style.asp – strager Feb 4 '10 at 9:49
5  
With .style you only get properties applied to the style attribute of the element, but not those applied with a CSS class. – neil Jun 29 '12 at 18:18

protected by Community Nov 24 '11 at 15:19

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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