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

I get this error in FireBug when I try to access some CSS files hosted on external domains:

Security error" code: "1000
rules = styleSheets[i].cssRules;

The code I am using is:

$(document).ready(function () {
    $("p").live('mousedown', function getCSSRules(element) {
        element = $(this);
        var styleSheets = document.styleSheets;
        var matchedRules = [],
            rules, rule;
        for (var i = 0; i < styleSheets.length; i++) {
            rules = styleSheets[i].cssRules;
            for (var j = 0; j < rules.length; j++) {
                rule = rules[j];
                if (element.is(rule.selectorText)) {
                    matchedRules.push(rule.selectorText);
                }
            }
        }
        alert(matchedRules);
    });
});

Is there a way to fix this, beside moving all the css files on the same domain? Thank you

share|improve this question
I solve it disabling web security reference here: stackoverflow.com/questions/3102819/… – Fabrizio Giordano May 5 at 23:35

5 Answers

If you have control over the domain where the external stylesheet is hosted, it may help to add an appropriate Access-Control-Allow-Origin header.

Access-Control-Allow-Origin: http://stylesheet-user.example.com
share|improve this answer

I had a similar issue under firefox and chrome. I've solved it in a harsh way by adding to my domain a css file which included the external domain css, like this:

<style type="text/css">
@import url("https://externaldomain.com/includes/styles/cookie-btn.css");
</style>

It's fast but dirty. It's recommended to keep all css files in your domain.

share|improve this answer
It does not work for me. Tested on this very page that (now) has external stylesheets. var style = $('<style>@import url('+document.styleSheets[0].href+');</style>'); var importRule = style.sheet.cssRules[0]; var cssRules = importRule.styleSheet.cssRules; // null! – Georgiy Ivankin Mar 27 at 16:57
Sure you could do that. But why then pair that with @import? – alex May 9 at 2:20

If this triggers for you because some of your CSS may come from elsewhere but NOT the bit you are interested in, use a try... catch block like this:

function cssAttributeGet(selectorText,attribute) {
  var styleSheet, rules, i, ii;
  selectorText=selectorText.toLowerCase();
  if (!document.styleSheets) {
    return false;
  }
  for (i=0; i<document.styleSheets.length; i++) {
    try{
      styleSheet=document.styleSheets[i];
      rules = (styleSheet.cssRules ? styleSheet.cssRules : styleSheet.rules);
      for (ii=0; ii<rules.length; ii++) {
        if (
          rules[ii] && rules[ii].selectorText &&
          rules[ii].selectorText.toLowerCase()===selectorText &&
          rules[ii].style[attribute]
        ){
          return (rules[ii].style[attribute]);
        }
      }
    }
    catch(e){
      // Do nothing!
    };
  }
  return false;
}
share|improve this answer
This function helped me a lot. Tks. – Edu Jul 17 '11 at 22:06

Sorry I do not think there is anything you can do about this as you can see from this forum post it looks like others are having a similar issues.

http://support.mozilla.com/tiki-view_forum_thread.php?comments_parentId=377420&forumId=1

Can you give some more information as to what exactly you want to do with this information. Maybe there is another way to tackle your problem?

share|improve this answer
I am trying to get the clicked element class and CSS rules defined in the document CSS. The code works for same domain but it fails on cross domain. The firebug guys do something like this, use .cssRules to get that info even for cross domain. Probably they move the actual CSS file in a temp folder to remove that same origin error. – Mircea Jul 17 '10 at 10:39
So a user clicks an element and you want to get that class and the cssrules for that class? I will load something up later today and see what I can come up with. Seems like it should be possible since the CSS loaded into the page. – spinon Jul 17 '10 at 19:04
Yes, something like that. The only thing is that the CSS and JS files are on cross domains. The code above works for same domain. Thanx – Mircea Jul 19 '10 at 10:46

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.