opera

Prevent Opera form chaching mp3

Hi, again i try to prevent form caching mp3 files form my site. I use flash player, all files are outside public html i use this script to access to files <?php $file = $_GET['file'] . '.mp3'; $fileDir = '/path/outside/public_html/'; if (file_exists($fileDir . $file)) { ob_start(); $contents = file_get_contents($fileDir . $f...

Is there a way to hide the new HTML5 spinbox controls shown in Google Chrome & Opera?

Google Chrome now, and Opera before, shows a "spin box" control beside a input field of type "number". I want to be able to style this, or hide it. Are there ways of controlling this UI element yet? EG: <-- That little ui element with an up and down arrow. It's not that functional and its adding unnedded elements to a form I've created...

Jqzoom implementation to Joomla Opera IE problem

Hi everyone! I've implemented the jQzoom plugin in my Joomla based website. It works great on all browsers but IE and Opera, both latest versions. It seems that it's not getting the mouse position correctly. Although I've tested the same layout and options on a non joomla site, everything was fine, so I really don't know. Here's the way ...

CSS looks bad in Opera and IE; where should I start?

I have just completed my website, and it looks good in FF, Safari and Chrome. Opera looks alright, but not as good as FF. IE looks very bad. Is there any application for checking bad CSS and just fix it? If not, what is the easiest way to cross-browser adjust a website? Below is only one of the many problems I have with appearance... ...

right click event (onclick) in chrome, opera and IE (javascript)

in Firefox I used the document.onclick event and then checked if it was a right click, and If i right clicked everything went as expected. But in Chrome, Opera and IE8, if I right click the document.onclick doesn't fire. I want to have a custom context menu for img elements. How do I go about this? ...

Opera loads nothing - MyBB forum website.

I've got a website (www.ferfereh.ir - sorry it's not english) and I've installed a MyBB forum for it with this sub-domain (www.forum.ferfereh.ir). The strange thing is it doesn't work on the Opera browser, nothing gets loaded and the page is all white. I've tested it on other browsers, everything is fine. Does anyone have any idea why th...

How to remove button outline in Opera

Hi guys. Is anybody knows how to remove dotted outline on buttons in Opera? ...

Problem with JSON

var obj = { '51' : { 'name':'name1'}, '66' : { 'name':'name2'}, '58' : { 'name':'name3'} }; $(function() { s = ''; $.each(obj, function(k, v) { s += ' '+k; }); alert(s); }); In IE and Firefox it's 51 66 58, but in Opera and Chrome it's 51 58 66 Why Jquery.each() sort by key in opera, chrome? What can i...

Remove autocomplete in code for Opera Mini Browser

Hey all We have a mobile web based app at my company. Due to the nature of the application we do not want the browser on the users phone to prompt the user to save the passwords on the form a.k.a the autocomplete feature. We managed to do that for IE and Firefox by setting the autocomplete tag to "off" but that doesnt seem to work for ...

Want to submit large content through opera browser.

When I submited a large content say 400kb file (410042 characters) through form. If working fine for Fire fox, IE 8, and Safari. But when I submitted the content through the Opera 9 browser the form not getting submitted I got blank screen. Thanks in advance ...

Crossdomain cookie in Opera browser

Hi all, I have few web application based on ASP. NET. Multiple sites authorization is used in there. If I logged on subdomain1.mysite.com, I logged on subdomain2.mysite.com aswell. I used for that the same machineKey configuration. forms section looks like that: <forms name=".ASPXFORMSAUTH" protection="All" path="/" timeout="43200" l...

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 is almost the same like Firebug (JS debugger, DOM/CSS inspector, JS console, page load analysis, etc.). I've tried Dragonfly but returned to...

CodeIgniter session issue on Opera and Safari

I am using codeigniter 1.7.2. In my web app after logging out, on clicking the back button of the browser the page is reloaded in the logged in page. This issue is occuring on Opera and Safari only. I have disabled cache using meta, but that doesn't help. :( <meta http-equiv="PRAGMA" content="NO-STORE" /> <meta http-equiv="Expires" c...

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 it if not, something like this: (function(){ d = document; if (!d.getElementById('ex-scr')) { scr = d.createElement('script'); ...

jQuery.load in Opera 10.6 not firing complete

Opera is the only browser giving trouble with this jQuery statement: $("select").load("options.html",function() { $(this).val("de"); }); The SELECT does not fill with ANY options. It is blank. Worse, I can turn on DragonFly in an effort to trace it down, and the problem disappears. The options are displayed as they should. Anyone ...

Why Opera is using Firefox's Cookies

Hello, I have two open sessions on different browsers (Firefox, Opera). Both of them run on different user accounts. When I navigate through the administration page, the cookies are ok. But when I try to upload some images, the uploading php script receives the same cookies as in Firefox. This doesn't happen if I use Internet Explorer ...

Hide the mouse cursor in Opera 10 Kiosk Mode

Seems I can't use cursor:url(); with opera and from what I can tell they removed the hide cursor setting from opera.ini. We're running an app in kiosk mode on a touch PC and would like to hide the mouse cursor. any idea on how to do this? ...

HTML/CSS: get rid of cursor in opera

building a website for a touch PC and need to know how to make the cursor disappear completely in opera. Any suggestions? ...

jQuery keyup keyCode doesn't work in Opera

Hi, Is it possible that the opera browser ignore the keyCode 40 (arrow down)? $('#test').keyup(function(e) { $('body').append('' + e.keyCode + ''); }) Test it at: http://www.jsfiddle.net/V9Euk/454/ Thanks in advance! Peter ...

CSS for inner background color of a text field

I have a text field, and it's good everywhere except Opera, where it takes the color of the background. How can I make just the inside white? Setting background(-color) to white makes the entire square element background white, which is not what I want. The cornering is border-radius. No IE hacks needed :) No specific CSS is used ...