|  | Using Javascript to change external css file at runtime ?? |  | |
| | | GiJeet |  |
| Posted: Fri Aug 29, 2008 6:49 pm Post subject: Using Javascript to change external css file at runtime ?? |  |
hello, is it possible to determine the browser and version using javascript at runtime and apply a browser specific external .css file? If so, I'd appreciate code sample so I can see how it's done.
TIA
G |
| |
| | | Jeremy J Starcher |  |
| Posted: Fri Aug 29, 2008 6:49 pm Post subject: Re: Using Javascript to change external css file at runtime |  |
On Fri, 29 Aug 2008 11:49:09 -0700, GiJeet wrote:
| Quote: | hello, is it possible to determine the browser and version using javascript at runtime and apply a browser specific external .css file? If so, I'd appreciate code sample so I can see how it's done.
|
If you are trying to load a separate style sheet for various versions of IE, then look up "IE conditional comments." |
| |
| | | Safalra (Stephen Morley) |  |
| Posted: Sat Aug 30, 2008 11:22 am Post subject: Re: Using Javascript to change external css file at runtime |  |
| |  | |
On Fri, 29 Aug 2008 11:49:09 -0700 (PDT), GiJeet wrote:
| Quote: | hello, is it possible to determine the browser and version using javascript at runtime and apply a browser specific external .css file? If so, I'd appreciate code sample so I can see how it's done.
|
You can attempt to sniff the browser using the navigator object and then dynamically attach a stylesheet with something like this:
var styleNode = document.createElement('link'); styleNode.setAttribute('rel', 'stylesheet'); styleNode.setAttribute('type', 'text/css'); styleNode.setAttribute('href', 'style.css'); document.getElementsByTagName('head')[0].appendChild(styleNode);
....or even have a single stylesheet and just set an id on the body element. However, depending on what you are trying to accomplish, this is almost certainly the wrong solution. If you give us more details we may be able to advise you of a better solution.
-- Safalra (Stephen Morley)
A Colour Picker Widget For JavaScript: LINK |
| |
| | | Gregor Kofler |  |
| Posted: Sat Aug 30, 2008 1:35 pm Post subject: Re: Using Javascript to change external css file at runtime |  |
GiJeet meinte:
| Quote: | browsers, i figure i could have a separate css for the few different browser types.
|
Normally two. IE and the rest of the world.
| Quote: | i now have code in javascript which fires a function on the onload event and determines the browser type
|
Now that's interesting. How do you determine the browser - reliably? And what if somebody has JS disabled?
| Quote: | however, if you know of a better way, i'm open to suggestions.
|
Jeremy has already mentioned conditional comments. 100% compatible, easy to use, perfik! Or tweak your markup/CSS so you don't need different stylesheets for each and every browser. "Normal" designs hardly ever need that, anyway.
Gregor
-- LINK ::: Landschafts- und Reisefotografie LINK ::: meine JS-Spielwiese LINK ::: Bildagentur für den alpinen Raum |
| |
| | | GiJeet |  |
| Posted: Sat Aug 30, 2008 3:14 pm Post subject: Re: Using Javascript to change external css file at runtime |  |
| |  | |
| Quote: | On Aug 30, 9:22 am, "Safalra (Stephen Morley)" <nos...@safalra.com> wrote: ...or even have a single stylesheet and just set an id on the body element. However, depending on what you are trying to accomplish, this is almost certainly the wrong solution. If you give us more details we may be able to advise you of a better solution.
|
sure. different browsers display the same page differently. so rather then tweak a single css that displays correctly in all browsers, i figure i could have a separate css for the few different browser types. i now have code in javascript which fires a function on the onload event and determines the browser type then sets the version of css for that browser type at runtime so it displays correctly. there are only a few different types and i'd rather make 3 or 4 versions of the css then break my hump trying to get one version to work in all browsers.
however, if you know of a better way, i'm open to suggestions.
TIA G |
| |
| | | Gregor Kofler |  |
| Posted: Sun Aug 31, 2008 8:25 pm Post subject: Re: Using Javascript to change external css file at runtime |  |
| |  | |
GiJeet meinte:
| Quote: | On Aug 30, 11:35 am, Gregor Kofler <use...@gregorkofler.at> wrote:
Now that's interesting. How do you determine the browser - reliably? And what if somebody has JS disabled?
if user has JS disabled then tons of other stuff won't work either so with JS off, they may as well not browse the web... 
|
I suppose there's reason why quite a few FF extensions for controlling JS exist.
| Quote: | hmmm...not sure I like the idea of having my css riddled with tons of conditional comments. Makes it very hard to read. messy.
|
You need precisely *one*.
<!--[if IE]> <link type='text/css' rel='stylesheet' href='css/ie.css'> <![endif]-->
| Quote: | With separate css files coded per browser type the code is clean and making a change in one does not effect the others.
|
That's precisely what happens with cc.
Gregor
-- LINK ::: Landschafts- und Reisefotografie LINK ::: meine JS-Spielwiese LINK ::: Bildagentur für den alpinen Raum |
| |
| | | Thomas 'PointedEars' Lahn |  |
| Posted: Sun Aug 31, 2008 9:36 pm Post subject: Re: Using Javascript to change external css file at runtime |  |
Gregor Kofler wrote:
| Quote: | GiJeet meinte: hmmm...not sure I like the idea of having my css riddled with tons of conditional comments. Makes it very hard to read. messy.
You need precisely *one*.
!--[if IE] link type='text/css' rel='stylesheet' href='css/ie.css' ![endif]--
|
Iff we were living in a nearly perfect world (in a perfect world, there would not be something like IE in the first place). Currently, with a more-than-average accessible layout, you would need at least one CC for IE 6 and one for IE 7. But we are getting pretty much off-topic here, are we not?
PointedEars -- Prototype.js was written by people who don't know javascript for people who don't know javascript. People who don't know javascript are not the best source of advice on designing systems that use javascript. -- Richard Cornford, cljs, <f806at$ail$1$8300dec7@news.demon.co.uk> |
| |
| | | GiJeet |  |
| Posted: Sun Aug 31, 2008 10:23 pm Post subject: Re: Using Javascript to change external css file at runtime |  |
| Quote: | On Aug 30, 11:35 am, Gregor Kofler <use...@gregorkofler.at> wrote:
Now that's interesting. How do you determine the browser - reliably? And what if somebody has JS disabled?
|
if user has JS disabled then tons of other stuff won't work either so with JS off, they may as well not browse the web... :)
| Quote: | Jeremy has already mentioned conditional comments. 100% compatible, easy to use, perfik! Or tweak your markup/CSS so you don't need different stylesheets for each and every browser. "Normal" designs hardly ever need that, anyway.
|
hmmm...not sure I like the idea of having my css riddled with tons of conditional comments. Makes it very hard to read. messy. With separate css files coded per browser type the code is clean and making a change in one does not effect the others.
Gi |
| |
| | | Guest |  |
| Posted: Wed Sep 03, 2008 4:08 pm Post subject: Re: Using Javascript to change external css file at runtime |  |
| |  | |
On 1 Sep., 11:36, Thomas 'PointedEars' Lahn <PointedE...@web.de> wrote:
| Quote: | Gregor Kofler wrote: GiJeet meinte: hmmm...not sure I like the idea of having my css riddled with tons of conditional comments. Makes it very hard to read. messy.
You need precisely *one*.
!--[if IE] link type='text/css' rel='stylesheet' href='css/ie.css' ![endif]--
|
Yes and no. There are four types of browsers, really... IE6, IE7/8, Other Legacy Browsers (NS4, IE4, O4 etc) and "everything else" ... The guy is not interested in supporting Legacy Browsers (except IE) which leaves three (types of) browsers. Only IE will read the IE conditional comments.
Here is the MSDN documentation on them: LINK You see, you can filter any IE versions your heart desires.
SO: make a stylesheet. add it to your page. Then add a second stylesheet and tweak it for IE7. Comment it out conditionally and do it again for IE6.
This is the way _recommended_ by both _Microsoft_ AND the W3 Consortium. So in endorsing any other method for doing this, one would be contradicting industry leaders (who is the W3C? Not just the standards-setter, but also a collaboration of browser vendors and others) AND the manufacturer of the browser in question.
This is NOT a problem for javascript! It absolutely isn't. Although only maybe three percent of humans surf without it, javascript is not a dead language and browsers are not dead either. If you write a script to try to sniff out all the versions of all the browsers, you will fail. Sooner or later you will fail and you shouldn't bother even designing a layout in the first place. You, human, do not have an encyclopedia of exactly how every single version of every single browser reacts in every single situation. And you don't know what they will do next week. If you had this kind of information, you wouldn't be asking how to detect browsers in javascript to offer alternate stylesheets.
Just set it in the proper way and forget it.
Here are some tips for making your page look the same in all browsers: - use a doctype that triggers standards compliance mode --- because each browser has a very different quirks mode - validate all your markup (and your css, actually) --- because every browser will treat it differently when it breaks - separate your behaviour, presentation and structure if you can at all --- because you don't bang in a nail with a saw now, do you??
If you follow these rules (which are easy if you haven't formed any bad habits) you will find that all browsers treat your code almost exactly the same -- with the notable exception that Internet Explorer is almost totally unpredictable and can be crashed by CSS. But all the other browsers will mostly behave.
Anyway, using javascript for something that MUST work is not very clever. You should make sure it works without javscript (where possible... I mean you can't make javascript ping pong with no javascript), and then use javascript to enhance it. Not the other way around, because javascript changes faster than humans can cope. Check out dynamic drive for good examples of this.
Or try to find a browser detection script that already detects Google Chrome. ....... You don't know how next year's browsers will handle it, so use something that will stand the test of time.
| Quote: | Iff we were living in a nearly perfect world (in a perfect world, there would not be something like IE in the first place). Currently, with a more-than-average accessible layout, you would need at least one CC for IE 6 and one for IE 7. But we are getting pretty much off-topic here, are we not?
|
I agree wholeheartedly with all of this!! Definitely! Except for the getting off topic bit. The original poster THOUGHT that it was a javascript question, but it wasn't at all.
We're on topic but the thread is in the wrong group. |
| |
|
|