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

Upon loading, my web site runs this code if the users is using an alternate theme:

ReplaceJSCSSFile("css/skin1.css", "css/skin2.css", "css");
AJAX_LoadResponseIntoElement("skinContainer", "skin" + themeSelect + ".txt", function() {
    AJAX_LoadResponseIntoElement("contentdiv", "index.txt", initPage);
    });

What AJAX_LoadResponseIntoElement does ought to be obvious, but here's a short explanation of ReplaceJSCSSFile: It basically searches for link elements within the web page with their src property equal to "css/skin1.css", at which point it creates a new link element (src="css/skin2.css") and uses .parentNode.replaceChild to replace the old with the new.

The problem with this is that initPage() sets the positions and of certain divs that move around on the screen in relation to the positions of static elements. The position of those static elements is fetched from CSS, but the CSS is not being applied before the code is running, and initPage() is putting things in the wrong place because of it.

I have tried using a callback:

ReplaceJSCSSFile("css/skin1.css", "css/skin2.css", "css", function() {
    AJAX_LoadResponseIntoElement("skinContainer", "skin" + themeSelect + ".txt", function() {
        AJAX_LoadResponseIntoElement("contentdiv", "index.txt", initPage);
    });
});

Unfortunately, this didn't work. Presumably, it tells the browser to replace the CSS file, and as soon as it tells the browser to do that, it moves on to the callback function, using AJAX to fetch the page contents. I'm thinking the page contents come back prior to the CSS file, which is why the new CSS is not being applied by the time initPage() is being executed.

Is it possible to fix this without using alternate stylesheets?

The only thing that I can come up with other than alternate stylesheets is fetching the CSS contents with AJAX (which would actually wait for the server's response before executing the callback function) to replace the "css/skin1.css" link element.

share|improve this question

2 Answers

up vote 1 down vote accepted

You can fudge it and use setTimeout in your callback so that the body of the callback isn't run until a bit later. This gives the browser some time to recover.

share|improve this answer
This works... thanks. I think what I'm going to do is make some sort of proceed() function. It will basically just do a 10ms timeout until the CSS change has been detected. I'll also try the AJAX solution that I mentioned in my OP. For now, though, it's an adequate quick fix. Thanks! – TimFoolery Feb 12 '11 at 16:53

You can also try to merge your css files and simply switch themes adding (or removing) a custom CSS class to your HTML tag. This will speed up things.

share|improve this answer
Normally I'd say this isn't a bad idea, but seeing as how I will probably end up with 10 different themes, I'm thinking it would be a lot of extra, unnecessary bandwidth. I appreciate the answer, but I don't know that it's the best option for me. – TimFoolery Feb 12 '11 at 16:41

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.