opera

How to make CSS visible only for Opera

Hello! Is there a way to make some CSS rules visible only for Opera (9.5 +)? Thank you! ...

assigning dynamic cursor style to element using jquery in Opera

I'm trying to dynamically change the cursor style when the mouse is over an element. The cursor should be either "move" or "default" depending on a boolean returned by a method. The code is something like this: $("#elemId").mousemove(function(event) { if(cursorShouldBeMove()) { $(this).css({'cursor':'move'}); } else { ...

Opera CSS Issue: Strange black backround in Opera 9.63 and 10 beta when using a combination of overflow and background-color

I've created a script to create scrollable tables with fixed headers but it is having a strange styling issue in Opera where the background color of the containing div turns black above the scroll bar if I try to set the background color to anything. This script was tested and works fine in IE6/7/8, Firefox 2/3, Chrome 2/3 and Safari 2/...

sIFR 3 r436 Opera + Firefox float issue

I’m having an issue with sifr placed next to a floated img, Opera 9.6 is forcing the text to clear the image and display on one line. Firefox is also forcing the text to clear the first time the page is loaded, although a refresh fix’s this and the problem will never occur again, only to return if cache is cleared and the browser restart...

Is there any way to store files locally using Opera's user javascript?

Is there some way to download and store files in a specific, developer-defined location using Opera's user javascript functions? Thanks. ...

Opera problem with javascript on submit

I have an input element with onchange="do_something()". When I am typing and hit the enter key it executes correctly (do_something first, submit then) on Firefox and Chromium (not tested in IE and Safari), however in Opera it doesn't (it submits immediately). I tried using a delay like this: <form action="." method="POST" onsubmit="wait...

GD - rotating image doesn't work in IE and Opera

I've created a function that rotates defined image. It works perfect in firefox, but in IE and Opera nothing happens - the image is reloaded but not rotated. Does anybody know why? Here goes the code: function rotateImage($direction, $id, $angle) { $dir = opendir($direction); if ($img = imagecreatefromjpeg($_SESSION['files'][$id]['lar...

Links not appearing in IE or Opera.

I have tested my website on Safari and Firefox on both PC and Mac and the links work fine. However, my links show up as just plain text on Internet Explorer and Opera. What am I doing wrong? This is my header where my links are contained. It is on several of my pages. The original website is t h e p i c k l e . t k I spaced inbetween all...

Strange(?) Opera Floating

I have some strange floating behaviour on opera (IE f's up completely different, but that's for later). I'm floating the i-icons to the right. It works nicely on Fx and WebKit, but opera shifts the icons down a bit. Anyone got an idea how this happenes? CSS: .dataRow { margin: 5px 0; clear:right; } .dataRow label{ display: block;...

Opera calling scripts with PSN on OSX

So I want to associate a particular 'protocol' in my Opera browser with a shell script on OSX. In Opera, I therefore did: <open preferences dialog> Advanced Tab -> Programs Added 'myProtocol' and set it to open with other application '~/bin/myScript.sh' Applied settings etc. Now, when I go to myProtocol://some.url.or.other, opera is...

Opera web browser: HTTPS server responds with certificate, then client ACK but then no data is sent back

I have a server (which I do not have a lot of control over, it is our production server thus I am hands off) that serves a page for to me over HTTPS. Using wireshark I was able to watch the communication. What I observe is: Opera (the web browser we are using) sends SYN request Server responds with SYN ACK Opera acknowledges ACK Opera...

How can I remove zoom icon in opera mobile

Hi, I am designing a web page for Opera Mobile. It has a little zoom icon on the left right corner. When I visit www.opera.com, this icon becomes invisible and zoom level becomes fixed. For any other web page it appears and I can zoom in and out of the page. I want the same fixed zoom behavior in my page too. It is probably some css pro...

Opera: Detecting back, forward, refresh and close events ...

I'm currently working on a jQuery plugin that tracks a visitors mouse behavior. Movements, clicks, scrolling and resizing are all recorded and sent, via Ajax, to a location where this data is parsed and stored. Originally, the data is sent to a script when the user leaves the page. By 'leaves' I'm referring to refreshing, going back and...

Collection of Browser characteristics

I searching the Internet for an Page or an Book that collects the characteristics (Bugs/Features) of common Browsers. I get a lot of Information from several sites.. but is there some place for webdesigner that focusses on that issue? At the moment i am using Grails if that is an needed factor to answer my question. ...

sIFR3 + opera = random element changes vertical poisition

I'm trying to make a horizontal menu using sIFR3 and it's making a strange thing in Opera (only). It moves one random element (never the first one though) a bit lower than the rest. I tried to check it out with adding a border-bottom, but it turns out to be a straight line. The elements are h2's, but the same problem is with span or any ...

Why does page-anchor not work in Opera?

I got the following webpage-builtup: <div id="menu"> </div> <div id="content"> <!-- you just need to see the last part of the page? us this link --> <a href="#down">down</a> <!-- A LOT OF CONTENT ... no fun to scroll down --> <!-- EVEN MORE CONTENT ... still no fun to scroll down --> <a name="down" id="down" /> </...

Opera Scrolls Page to Invisible Elements

I'm working on a simple game engine in Javascript (crazy, I know.) Screenshot from Opera: http://img406.imageshack.us/img406/5818/gamek.jpg Although it looks like a tile engine, it's actually object-based; each row or column of grey blocks is a single <div>, positioned relative to the viewing area (box with red border). The viewing area ...

Problem with Opera and jquery keydown return false

Hi. I´m trying this on Opera 10 and doesn´t work: $('input').keydown(function(){ return false; }); This works fine in other browsers. Can anybody tell me something about this?? Thanks! ...

how to set focus in required index on textbox for opera

i'm having a textbox where i need to set focus/ cursor at required index of the textbox in opera browser. ...

Opera and ie cache <p class="hide">, so javascript doesn' work.

Hello, sorry my question is dumb. I have a simple css file with class hide, that makes an element hidden (wow!). I use simple javascript to unhide element: $(document).ready(function(){ var a = $("p.hide"); a.removeClass("hide") }); It works in Firefox, Chrome, but in Opera and IE I should manualy reload page to see an effect...