473,394 Members | 1,813 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

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
Aug 29 '08 #1
8 4911
On Fri, 29 Aug 2008 11:49:09 -0700, GiJeet wrote:
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."
Aug 29 '08 #2
On Fri, 29 Aug 2008 11:49:09 -0700 (PDT), GiJeet wrote:
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:
http://www.safalra.com/web-design/ja...colour-picker/
Aug 30 '08 #3
>On Aug 30, 9:22*am, "Safalra (Stephen Morley)" <nos...@safalra.comwrote:
...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

Aug 30 '08 #4
GiJeet meinte:
browsers, i figure i could have a separate css for the few different
browser types.
Normally two. IE and the rest of the world.
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?
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
--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Aug 30 '08 #5
>On Aug 30, 11:35*am, Gregor Kofler <use...@gregorkofler.atwrote:
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... :)
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
Aug 31 '08 #6
GiJeet meinte:
>On Aug 30, 11:35 am, Gregor Kofler <use...@gregorkofler.atwrote:
>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.
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]-->
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

--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Aug 31 '08 #7
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]-->
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, <f8*******************@news.demon.co.uk>
Aug 31 '08 #8
On 1 Sep., 11:36, Thomas 'PointedEars' Lahn <PointedE...@web.de>
wrote:
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:
http://msdn.microsoft.com/en-us/library/ms537512.aspx
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.

>
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.

Sep 3 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: Charles Law | last post by:
This is a bit of a vague question, but I am just starting on this, and wonder if anyone has ideas of where to start. I have a program that controls some external equipment. It sends messages in...
9
by: Charley Kyd | last post by:
I'm a newbie who needs advice about how to use external files of JavaScript code. I spent an hour this afternoon browsing through JavaScript books at the local book store. In about 15 different...
12
by: knocte | last post by:
Hello. I have always thought that the eval() function was very flexible and useful. If I use it, I can define functions at runtime!! However, I have found a case where eval() does not work...
12
by: Charlie | last post by:
Hi: My host will not allow me use a trusted connection or make registry setting, so I'm stuck trying find a way to hide connection string which will be stored in web.config file. If I encrypt...
4
by: Adam Smith | last post by:
Hello, How can I call or trigger an external javascript twice in a form? I have <script language="JavaScript" src="country_state.js" name="Country_State"> <script type="text/javascript"...
4
by: James Pemberton | last post by:
I have recently created a ASP site utilizing Master Pages and all works fine until I want to proces my javascripts. Just to let you know, most of cliewnt side scripting is new to me. But...
16
by: howachen | last post by:
e.g. <script type="text/javascript" src="js/common.js"></script> but not <script type="text/javascript" src="js/common.js" /> for any reason?
8
by: Bruce | last post by:
I am using VB in Vs2005. Am I missing something or does VB not have the concept of "builds" (release/debug) like in VC? I wrote an assembly and I would like to have a debug version of the DLL...
5
by: lilOlMe | last post by:
I have an extern JavaScript file I've called "Utils.js". It will eventually hold all of the common JavaScript functions used throughout the ASPX pages that make up my website. Right now this file...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.