Him I'm using this script to detect browsers, but it seems to not to implementing css in opera. So, in browserdetect.js i have this:

{
  prop: window.opera,
  identity: "Opera"
},

And in my html i have this:

else if (BrowserDetect.browser == "Opera") {
    document.write ('<link href="styles/style.css" media="screen" rel="stylesheet" type="text/css" />');

It seems to be working properly in other browsers, but in Opera it just fails to implement <link href="styles/style.css" media="screen" rel="stylesheet" type="text/css" /> in head part of the page. Can you suggest what could be the problem? Thank you.

link|improve this question

1  
What do you get if you alert(BrowserDetect.browser)? – Quentin May 16 '11 at 15:57
Why do you need to detect the specific browser? – Tim Down May 16 '11 at 15:58
feedback

3 Answers

up vote 2 down vote accepted

This works so you have other issues

http://jsfiddle.net/mplungjan/sWvqk/

BrowserDetect.init();  
alert("Opera? "+BrowserDetect.browser+":"+(BrowserDetect.browser=="Opera"))
link|improve this answer
my bad, there was missing one }, sorry – Maay May 16 '11 at 19:34
feedback

why not use browsecap for php? this could be also good: http://www.dangrossman.info/2010/10/11/a-browscap-ini-parser-in-javascript/ or try this: how to determine the opera browser using javascript...

link|improve this answer
Because i really have to use only html, javascript and css. – Maay May 16 '11 at 15:54
your server doesnt support php and json? so your script just works if javascript is activated, the php script would be better well: stackoverflow.com/questions/1998293/… – Daniel Ruf May 16 '11 at 15:57
feedback

If your having an issue with only opera and css, why not try and edit your current css to add opera specific calls?

This code can be used to target opera only in css:

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {

            #my-id { clear:right; }

        }

See here for more on these browser css calls

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.