opera

jQuery Carousel function issues

Hi there, Ive been writing a simple jquery function that turns a div with a list of images into a carousel. Here is the markup.. <div id="carousel"> <ul> <li><img src="images/music1.jpg" /></li> <li><img src="images/music2.jpg" /></li> <li><img src="images/music3.jpg" /></li> </ul> </div> and in my carousel.js file i hav...

how to determine the opera browser using javascript...

Hi All, i want to determine that the browser of the client machines in opera or not using javascript. Thanks in advance Avinash ...

Animating opacity doesn't work in IE or Opera

I'm experimenting with jQuery plugins. I have this code to fade in a "lightbox": $('#cleverbox') .css({ opacity:0, visibility:'visible' }) .animate( {opacity:1}, 2000 ); It works fine on Firefox and Chrome, but in IE (7 and 8) and Opera the element just appears rather than being faded in. There are a bunch of similar questions...

Opera keyboard navigation

Hi, I am curious how does the Opera browser implement it's keyboard navigation, where you can do Shift+(Up|Down|Left|Right) and you travel along a row or a column. How would you implement this in javascript? Thanks ...

Bookmarklet: Redirecting to m.*.* for Mobile Browsers & www.*.* for Desktop Browsers

Is there a JavaScript hack I could place in the URL field which would guide mobile browsers to "m." prefixes and guide my desktop to "www." prefixes, if I provide the "<domain>.<root>" suffix? I think this would be useful for both Weave and Opera Link users. ...

dojo node selection not working in Opera Widgets

I've got a problem which boils down to the fact that dojo node selection doesn't function on a s60 mobile platform and Opera Widgets. Something as simple as dojo.byId throws an error while document.getElementById is ok. How does dojo node selection differ from your vanilla JavaScript? Is there any setting in Opera Widgets which can be ...

How does Opera 10.50's custom UI work?

For the past two days i have been looking around the net to find how Opera made their pre-alpha build with that UI. I mean its like built with windows shell here are some screenshots any tutorials , books or videos would be helpful P.S. I also saw the win 7 SDK but its all C++ samples and i learn C# ...

Opera localStorage ignores my existence check

if (localStorage) { var menushown = JSON.parse(localStorage.getItem("menuState")); if (!menushown) { menushown = menuDefaultState; } } else { menushown = menuDefaultState; } The above JavaScript fails in Opera 10.10. It complains that localStorage is undefined on the second line. This is true, but because o...

Java applets launched using deployJava.js not working for Opera/Chrome on Mac?

I noticed that the launching of Java applets using deployJava.js seems to have stopped working on some Mac browsers. Safari and FF still work, but Opera and Chrome send the user to Java installation page, as if the plugin was not found. Take for example this. If you click the launch button in Opera, it sends you to a Java installation...

When will Opera support border-radius?

Is there a release or any news on when they will support border-radius? I heard that they have supported it in the past, with something like -o-border-radius, what happened to it? ...

Future proof CSS hack for LTE Opera 10

I’m currently using @media screen and (-webkit-min-device-pixel-ratio:0) { example {} html:first-child example {} } to target Safari + Opera 9.2 Is there a safe way to target opera gte op 9.5 or lte op 10? (for example it won't be picked up by an upcoming version of firefox) By the way, type="text/opera" isn't working any...

C++ change Opera proxy settings

I'm writing an http proxy program in C++ and I need it to automatically configure the default browser proxy settings to use my proxy. With IE i can just modify the registry, Chrome has a command line parameters that can be used, firefox has the prefs file, but I can't figure out how to do it for Opera. It needs to be compatible with all ...

Cross-domain iframe communication in Opera

Hi, I have need to communicate between two iframes of the same domain, which live inside a parent page on a different domain that I have no control over. This is a Facebook app and the basic layout is this apps.facebook.com/myapp L iframe1 (src='mysite.com/foo') L iframe2 (src='mysite.com/bar') I need frame1 to talk t...

Locate an element within SVG in Opera by coordinates

Hi, How do I locate an element within SVG in Opera, given coordinates? elementFromPoint(x,y) works fine with Firefox, but seems to fail with Opera, returning always the whole SVG and not the particular element. One might wonder why do I need it at all. Well, simply because I'd like to highlight the SVG element under the cursor, and be...

Does Firefox/Opera handle positioned/multiple background images?

Having issues getting specific background images to display in Firefox/Opera, all other browsers are playing ball (except obviously IE, for which I've had to compromise). Currently, Opera won't allow multiple background images like so: background-image: url('/images/h2_default_bg.png'), url('/images/dashed_bg_default.gif'); background-...

Why does this odd CSS confuse the DOM parsers of IE 7 and Opera 10?

This is a weird CSS issue I was experiencing while trying to fix a footer that rendered properly in IE 6 but failed to render properly in IE 7. Here's what the issue was. There is this css class, clearer, shown below: .clearer { clear: left; line-height: 0; height: 0; } In the JSP/HTML output, there were either: <div ...

Is there a workaround to Safari's/Opera's bug that you can't tab through hyperlinks?

In IE, Firefox, Chrome and most Windows-based interfaces that I've used, the Tab key can be used to navigate from one form field or hyperlink to the next (e.g. "actionable" items) (note: I have not tested on other Operating Systems) However Safari and Opera skip all hyperlinks in a web page when tabbing. IMHO its a usability bug but I ...

OBML file format

Opera mini browser can save HTML pages in OBML (Opera Binary Markup Language) format for offline browsing. I am wondering if I can convert a HTML file to OBML format and save in my phone for later viewing. For doing so, I need details about the OBML format, which seems to be undocumented. Do you know more details on this OBML format? T...

sIFR replaces Text in one single line in Opera

Hi, I tested my site in different browsers now (IE, FF, Safari, Chrome) and so far sIFR works fine. But when it comes to Opera the text, which goes over more than one line, is rendered in one single line without breaks. Can this be solve, so that it's rendered correctly? ...

event listeners on plugin in document.onload events in opera

I am trying to understand an issue where event-listener registration on plugins doesn't work in Opera unless i delay them. In particular, this doesn't work: document.onload = function() { plugin.addEventListener("foo", function() { alert('onFoo'); }, false); } while delaying the addEventListener() call somewhat through e.g. an al...