Tagged Questions

Opera is a web browser and Internet suite developed by Opera Software.

learn more… | top users | synonyms

25
votes
1answer
255 views

Is it correct that JSON.stringify(2) == “2” may return false?

I've found that on Opera 11.50 the expression JSON.stringify(2) returns an object for which typeof returns "string" constructor.name is String charCodeAt(0) is 50 length is 1 But still ...
23
votes
10answers
19k views

Gradients in Internet Explorer 9

Does anyone know the vendor prefix for gradients within IE9 or are we still supposed to still be using their proprietry filters? What I've got for the other browsers is: background-image: ...
14
votes
7answers
553 views

HTML5 - cache manifest working great on Chrome but not on Firefox and Opera

I am developing a web app for offline use, thus I need to use the application cache functionality. Everything works great on Chrome (15.0.874.106) but is doesn't work on Firefox (7.0.1) and Opera ...
12
votes
1answer
813 views

Jquerymobile's Tap-hold not working in opera mobile widget emulator

I tried implementing Tap-hold function of jquerymobile as given in one of its demos <!DOCTYPE html> <html> <head> <title>jQuery Mobile Events</title> <link ...
11
votes
7answers
9k views

How can you create a CSS3 gradient in Opera?

I can create CSS gradients in IE6/7/8/9/FF3.6+ and Chrome (see below). My question is: How would one create a gradient in Opera? .gradient{ /*Mozilla Firefox 3.6*/ ...
11
votes
7answers
5k views

What is the correct way to detect Opera using jQuery?

Amazon.com recently updated their javascript, and it's causing problems with some Opera browsers. Their browser detection code looks like so, but it's faulty: function ...
10
votes
5answers
14k views

meta “viewport” device-width: Wrong width small on Opera Mobile 9.7 (10 works)

For my current mobile web project I use the meta "viewport" tag to instruct the mobile browser to use a scale of 1:1 with the devices' width: <meta name="viewport" content="initial-scale=1.0, ...
9
votes
4answers
972 views

How does Gmail do comet on Opera?

I would like to know how Gmail (or anyone else) does comet on Opera. Here is what I know so far from my experiments. It doesn't use the event-source tag which is broken in Opera 10.51. It doesn't ...
9
votes
4answers
18k views

How to do a Chrome/Opera specific stylesheet?

I need to do chrome/opera hacks because of a font replacement script wanted by the client that breaks things... this is sad but everything is working in IE6-7, FF2-3 and Safari. I have no way of ...
8
votes
7answers
287 views

Opera ignoring .live() event handler

I have the following jQuery which works in all major browsers except Opera: jQuery(document).ready(function () { jQuery("#GetResults").live("click", function(e){ ...
8
votes
8answers
3k views

How to make CSS visible only for Opera 11 - Opera 11 CSS Hack

Is there a way to make some CSS rules visible only for Opera (11)? Thank you!
7
votes
5answers
1k views

jQuery animate scrolltop on Opera bug

Has anyone tried using $(“html, body”).animate({scrollTop:0}, 'slow'); on Opera browser? It does a weird effect especially if you scroll on a long page, it seems like the page go first to the top ...
7
votes
6answers
346 views

Why Should I Care About Opera?

Firstly, I'm not against Opera. It just seems when I encounter cross browser issues, and do a little research, I always find "the fix", but then I see a comment crying foul that the cross browser ...
7
votes
13answers
15k views

How to make CSS visible only for Opera

Is there a way to make some CSS rules visible only for Opera (9.5 +)? Thank you!
6
votes
3answers
342 views

jQuery submit not working in Opera

I have a simple form which can be submitted outside the element via a small jQuery Script. <script type="text/javascript"> $(document).ready(function() { ...
6
votes
2answers
150 views

Prevent Opera browser from enriching HTML5 fields

I'm using loads of inputs with HTML5 types (such as 'date' or 'time') using the jQuery Tools library. Some browsers (like Opera) automatically recognize that and, for example, transform the <input ...
6
votes
11answers
1k views

Why does Opera parse my web page as XML?

I just tried viewing my website http://www.logmytime.de/ in Opera (version 10.50) it gives me an "xml parsing failed error" and refuses to display the web page. I can choose to "Reparse the document ...
6
votes
3answers
516 views

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 ...
6
votes
2answers
2k views

How to produce same result on different browsers when embedding SVG file in HTML code?

I begin to have a solution for my previous question Overlay SVG diagrams on google map. But I have another (smaller) problem. I am using Firefox 3.5 and Safari 4 (on Mac), and when I am embedding SVG ...
5
votes
3answers
107 views

Opera back-button cache functionality

I have some jQuery which modifies elements on the page after the user performs an action. These are persisted server-side so it all looks nice and fluid for the user. When the user clicks off-site ...
5
votes
2answers
78 views

Adding name attribute results in ID value becoming property of the document object in IE and Opera?

Consider this HTML source code: <form id="foo1" name="x"> Form 1 </form> <form id="foo2"> Form 2 </form> As you can see, we define two FORM elements. In Chrome, Safari and ...
5
votes
3answers
759 views

Changing button text with JavaScript doesn't work in Opera (11.11) for <input type=“submit” /> elements. Why?

Why is that changing a button text doesn't work in Opera 11.11 for elements like <input type="submit" value="Asdasd" id="blahblah_button" /> ? (Didn't try it in earlier versions yet.) I ...
5
votes
1answer
145 views

Opera post(GET)s the hash fragment of the URL

According to this line from Apache access log, it seems like Opera sometimes includes the hash fragment in the URI sent to server: [26/Apr/2011:01:09:03 +0200] "GET /dagbok/#type=food HTTP/1.1" ...
5
votes
3answers
412 views

Opera outline rendering bug?

Does anyone know something more about Opera outline bug? Check this out: http://jsfiddle.net/BYgMr/ I'm using the latest Opera, I've checked on TWO different machines with different Opera versions ...
5
votes
5answers
161 views

Why CSS properties do have different names for Chrome, FF, Opera?

I want a shadow below div called "shadow": #shadow { box-shadow: 1px 1px 1px #000 }; Done? Not at all. It works just in one browser. Guess which one. For FF/Chrome I have to add not too ...
5
votes
2answers
192 views

Prototype observe event problem in Opera

I'm using Prototype and doing Event.observe on window.document. I'm catching enter (keyCode 13) and alt+f (altKey && keyCode=70). My code is working super with firefox, IE and chrome. With ...
5
votes
3answers
3k views

Is there user-select for Opera 10.62 and IE9?

I have been trying to apply user-select for both Opera 10.62 and IE9 without success. I can't/won't bind events with JavaScript that preventDefault(), because there are so many places to be set ...
5
votes
2answers
333 views

HTML5 canvas: Same code outputs different results in different browsers

In a simple canvas test I created for performance and quality measurement purposes, a canvas is painted with randomised colors and images during an unlimited period. A sample is shown here: ...
5
votes
9answers
3k views

JQuery val() does not work for textarea in Opera

I am displaying a modal dialog using jQuery. This dialog has a textarea control on it. But on submitting this dialog, the value of this textarea is not recognized by jQyery for some reason. It always ...
5
votes
4answers
2k views

Opera Dragonfly vs. Firebug

I'm Opera user for browsing and Firefox user for developing. Simply I can't work without Firebug and any other tools doesn't fit for me. Geeks from Opera often offers to use Dragonfly which purpose ...
5
votes
3answers
748 views

Using jQuery within a Opera user javascript

I wonder if its possible to load jQuery within a opera user javascript, so that i can use jQuery functionality in the opera user javascript even on pages that is not currently using jQuery.
5
votes
4answers
820 views

Debug on Opera Mini

how do i debug a website that looks weird on opera mini? The site is working fine on any other browser
5
votes
4answers
1k views

Difference in jQuery with XML namespace and xhr.responseXML between Opera and Firefox

Consider this: <!DOCTYPE HTML> <html><head><title>XML-problem</title> <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <script ...
5
votes
3answers
2k views

Mimic Window. onerror in Opera using javascript

I am currently working on a web application, I have a JS logging mechanism that Handles Javascript error that are not caught by the js code inside the page. I am using window.onerror to catch all such ...
4
votes
2answers
44 views

Remotely debugging responsive designs on mobile handsets

As responsive design and mobile web development become the norm, like others I suspect, I find myself testing and bug fixing on a wide range of mobile and handheld devices. Traditionally, errors in ...
4
votes
4answers
283 views

Bottom of custom font cut off in Opera and webkit

I'm using a custom font in a page I'm developing, Droid Sans, and at certain font sizes, the bottom is cut off, but only in Opera and webkit browsers. It's easy to reproduce on Google's own webfonts ...
4
votes
6answers
306 views

Wingdings font family does not seem to work on Firefox and Opera

I was using the Wingdings font in the CSS for some symbols like a pencil and a home icon. It worked on IE, Chrome and Safari but not in Firefox and Opera. I googled it but did not find any better ...
4
votes
1answer
113 views

Why doesn't text-indent work when its container has a :before/:after pseudo-element? (FX/Opera)

Ran into this quirk today. http://jsfiddle.net/UJAjD/3/ You'll notice that in Firefox 7 and Opera, the gray box has the word "Next" in it. The CSS includes a text-indent property that should move ...
4
votes
1answer
108 views

Opera (and Chrome) is changing colors of my images! Why ? How to stop that?

link to this image : img Firefox shows this image as is. But if I open it with Opera Gray colors is different instead if I download it and open with any editor. Why ? Here is how opera shows me ...
4
votes
1answer
205 views

TinyMCE browser “fixes”

I'm getting a javascript error in Firefox and Opera when I'm using TinyMCE: j is null (function(d){var a=/^\s*|\s*$/g,e,c="B...a.selection.onSetContent.add(f)})}}); This error comes up after I save ...
4
votes
2answers
304 views

Opera Mini like software as Open Source

I'm looking for any(related?) opensource project that render web-pages at server side and deliver as images to client (mobiles?). Just like Opera Mini and SkyFire. So far, google does not give me a ...
4
votes
1answer
408 views

Opera won't load some JavaScript files

I have a web page that loads in an IFRAME, that runs correctly in IE and Firefox but not in Opera. Which I hate, because I've been an Opera user for years. And I wrote this thing. :-) The problem ...
4
votes
5answers
980 views

How do you stop Chrome and Opera sorting JSON objects by Index ASC?

I've got a problem. Using ajax I sent a correctly formed JSON object using: $.ajax({ type: "POST", url: SITE_URL+'/data.php', dataType: ...
4
votes
2answers
249 views

JavaScript scope issue in Opera?

I have a widget-like block of HTML+JavaScript that people can copy/paste into their HTML-page one or multiple times. That block checks if an external JavaScript file is already in the DOM, and loads ...
4
votes
9answers
1k views

How to remove button outline in Opera

Does anybody know how to remove the dotted outline on buttons in Opera?
4
votes
1answer
418 views

Can safari/chrome/opera make ajax requests while an upload is in progress?

Basically i am making a simple ajax request function upload(){ setInterval(function callMeOften() { $.ajax({ method: 'get', ...
4
votes
3answers
4k views

Print iframe content in Opera and Chrome

I'm trying to print iframe content. contentWindow.focus(); contentWindow.print(); This code works in IE, Firefox and Safari. But don't work in Chrome and Opera. These browsers print entire page. I ...
4
votes
3answers
2k views

Greasemonkey script compatibility with Firefox, Safari, Opera and chrome (onload event)

Say you wanted a Greasemonkey script to be compatible with Safari and Chrome. Whereas in Firefox the Greasemonkey scripts only run when the DOM is ready. Chrome, Safari and Opera seem to run the ...
4
votes
1answer
257 views

Opera Turbo or OBML specifications

i've got a tiny question is there any open OBML or Opera Turbo protocol specifications accessible over the internet? thank you
4
votes
1answer
7k views

-moz-focus-inner

In another question I asked about alignment this was given to me to answer the question about firefox being a twit. It worked but it has left a sour taste in my mouth and I'll explain why. ...

1 2 3 4 5 14