Get a CSS value from external style sheet with Javascript/jQuery

JavascriptJqueryCss

Javascript Problem Overview


Is it possible to get a value from the external CSS of a page if the element that the style refers to has not been generated yet? (the element is to be generated dynamically).

The jQuery method I've seen is $('element').css('property');, but this relies on element being on the page. Is there a way of finding out what the property is set to within the CSS rather than the computed style of an element?

Will I have to do something ugly like add a hidden copy of the element to my page so that I can access its style attributes?

Javascript Solutions


Solution 1 - Javascript

With jQuery:

// Scoping function just to avoid creating a global
(function() {
    var $p = $("<p></p>").hide().appendTo("body");
    console.log($p.css("color"));
    $p.remove();
})();

p {color: blue}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

Using the DOM directly:

// Scoping function just to avoid creating a global
(function() {
    var p = document.createElement('p');
    document.body.appendChild(p);
    console.log(getComputedStyle(p).color);
    document.body.removeChild(p);
})();

p {color: blue}

Note: In both cases, if you're loading external style sheets, you'll want to wait for them to load in order to see their effect on the element. Neither jQuery's ready nor the DOM's DOMContentLoaded event does that, you'd have to ensure it by watching for them to load.

Solution 2 - Javascript

Normally you should be let the browser apply all the rules and then ask the browser for the results, but for the rare case where you really need to get the value out of the style sheet you can use this: (JSFiddle)

function getStyleSheetPropertyValue(selectorText, propertyName) {
    // search backwards because the last match is more likely the right one
    for (var s= document.styleSheets.length - 1; s >= 0; s--) {
        var cssRules = document.styleSheets[s].cssRules ||
                document.styleSheets[s].rules || []; // IE support
        for (var c=0; c < cssRules.length; c++) {
            if (cssRules[c].selectorText === selectorText) 
                return cssRules[c].style[propertyName];
        }
    }
    return null;
}

alert(getStyleSheetPropertyValue("p", "color"));

Note that this is pretty fragile, as you have to supply the full selector text that matches the rule you are looking up (it is not parsed) and it does not handle duplicate entries or any kind of precedence rules. It's hard for me to think of a case when using this would be a good idea, but here it is just as an example.

Solution 3 - Javascript

In response to Karim79, I just thought I'd toss out my function version of that answer. I've had to do it several times so this is what I wrote:

function getClassStyles(parentElem, selector, style){
	elemstr = '<div '+ selector +'></div>';
	var $elem = $(elemstr).hide().appendTo(parentElem);
		val = $elem.css(style);
	$elem.remove();
	return val;
}
val = getClassStyles('.container:first', 'class="title"', 'margin-top');
console.warn(val);

This example assumes you have and element with class="container" and you're looking for the margin-top style of the title class in that element. Of course change up to fit your needs.

In the stylesheet:

 .container .title{ margin-top:num; }

Let me know what you think - Would you modify it, and if so how? Thanks!

Solution 4 - Javascript

I have written a helper function that accepts an object with the css attributes to be retrieved from the given css class and fills in the actual css attribute values. Example is included.

function getStyleSheetValues(colScheme) {
	var tags='';
	var obj= colScheme;
	
	// enumerate css classes from object
	for (var prop in obj) { 
		if (obj.hasOwnProperty(prop) && typeof obj[prop]=="object") { 
			tags+= '<span class="'+prop+'"></span>';
		} 
	} 
	
	// generate an object that uses the given classes
	tags= $('<div>'+tags+'</div>').hide().appendTo("body");
	
	// read the class properties from the generated object
	var idx= 0;
	for (var prop in obj) { 
		if (obj.hasOwnProperty(prop) && typeof obj[prop]=="object") { 
			var nobj= obj[prop];
			for (var nprop in nobj) { 
				if (nobj.hasOwnProperty(nprop) && typeof(nobj[nprop])=="string") { 
					nobj[nprop]= tags.find("span:eq("+idx+")").css(nobj[nprop]);
				}
			}
			idx++;
		} 
	} 
	tags.remove();
}

// build an object with css class names where each class name contains one 
// or more properties with an arbitrary name and the css attribute name as its value.
// This value will be replaced by the actual css value for the respective class.
var colorScheme= { chart_wall: {wallColor:'background-color',wallGrid:'color'}, chart_line1: { color:'color'} };

$(document).ready(function() {
	getStyleSheetValues(colorScheme);

	// debug: write the property values to the console;		
	if (window.console) {
		var obj= colorScheme;
		for (var prop in obj) { 
			if (obj.hasOwnProperty(prop) && typeof obj[prop]=="object") { 
				var nobj= obj[prop];
				for (var nprop in nobj) { 
					if (nobj.hasOwnProperty(nprop)) { 
						console.log(prop+'.'+nprop +':'+ nobj[nprop]);
					}
				}
			} 
		} 
		// example of how to read an individual css attribute value
		console.log('css value for chart_wall.wallGrid: '+colorScheme.chart_wall.wallGrid);
	}
});

Solution 5 - Javascript

I wrote this js function, seems to be working for nested classes as well:

usage:

var style = get_css_property('.container-class .sub-container-class .child-class', 'margin');
console.log('style');


function get_css_property(class_name, property_name){
    class_names = class_name.split(/\s+/);
    var container = false;
    var child_element = false;

    for (var i = class_names.length - 1; i >= 0; i--) {
        if(class_names[i].startsWith('.'))
            class_names[i] = class_names[i].substring(1);
        var new_element = $.parseHTML('<div class="' + class_names[i] + '"></div>');
        if(!child_element)
            child_element = new_element;
        if(container)
            $(new_element).append(container);
        container = new_element;
    }
    $(container).hide().appendTo('body');
    var style = $(child_element).css(property_name);
    $(container).remove();
    return style;
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAcornView Question on Stackoverflow
Solution 1 - Javascriptkarim79View Answer on Stackoverflow
Solution 2 - JavascriptOld ProView Answer on Stackoverflow
Solution 3 - JavascriptDavid HobsView Answer on Stackoverflow
Solution 4 - JavascriptMarc DerksenView Answer on Stackoverflow
Solution 5 - JavascriptfenadorukView Answer on Stackoverflow