opera

Why Ajax request, using the GET method, cannot be cached in Opera?

Please look at this small test: http://www.karapuz.by/media/js/ajax-GET-caching-test.html It seems that Opera (mine is 10.10), in contrast to IE, FF, GC, and Safari, is not caching the ajax response, even if it is explicitly told to do that. Any ideas? ...

file upload problem in opera

Hi, I am using ubuntu and opera browser.I applied ajax with php to upload image file.when i try to upload png file,file uploads with "lock" icon on it and also with permission problems.I also used chmod function but it also not working there.Please guid me to get rid from this problem. With My Best Regards.. ...

Jquery $.get against ASP.NET MVC not working in Opera and Firefox

Let me first put the code snippets here. I am just using the ASP.NET MVC project Visual Studio creates out of the box. So I am just putting the snippets I added to it: Site.master's head section: <head runat="server"> <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title> <script src="../../Scripts/jquery-1....

Opera: How do I hide scroll bar? (not there in Firefox and IE8)

I'm testing my pages in different browsers. Opera puts a vertical scroll bar on a page. I added an overflow:hidden to the div (after trying Opera), but the scroll bar is still there. How do I get rid of it (you don't need the scroll bar to view the page). Thanks ...

Onkeyup not firing in Opera when using cyrillic layout.

Hello, I'm struggling to understand why the following problem appears. I have an input box and I want to attach an Autocomplete box to it. function input_set_autocomplete_to(obj) { if( obj.type != "text" ) { return; } if( obj.getAttribute("rel") != "autocomplete" ) { return; } obj.setAttribute("autocomplete", "off"); o...

link rel not working without http:// protocol

Hi, i'm trying to implement various semantic links on the website I'm working on. For that, i try to put <link rel="start" href="index.html" /> In my head section. Although the data is present in the web page, Opera does not seems to see it to show the navigation bar that should however be present. Here is my full head section. <...

Jquery cycle plugin image resizing issue opera

I am using the cycle plugin within Joomla and it works fine on IE6,FF,SAFARI,CHROME however when you view it in OPERA breaking happens. It loads fine but when it brings in the next slide and every consequent slide after that it re-sizes them to what i can only assume to be the browswe window's width and height. here's my javascript <s...

How can I convert TextBox multiline to Uppercase in Opera?

I can't find how to convert TextBox multiline to Uppercase in Opera? I use "text-transform:uppercase" but it work only with IE ...

Opera IME support

Hi, i am currently trying to get Input Mode Editor (IME) support working with a designMode enabled IFrame. The problem here is with Opera it seems I don't get any useful notifications from the IME. It seems I get a single keydown with a keycode of 197 if the first time the IME is used - and nothing else ever again (No keycode 229 messa...

Remote Scripting in Opera handheld widget

I have to do a widget that calls functions from a remote javascript file, my problem is that i dont know how configure that in config.xml. ...

Weird disappearing dropdowns in Opera 10.51 using jQuery fadeIn and HoverIntent

Take a look at www.sensenich.com in Opera. I'm not sure if this is specific to my version but Opera seems to do a number on the dropdowns from the top navigation menu. For some reason the li in the ul .subhead become transparent. Also if you hover over .subhead it immediately disappears. This behavior only seems to exist in Opera, ot...

how can i make sure to get the server response correctly when i invoke the server with QNetworkRequest->get()?

I wrote the server site call in Qt, but i haven't get the server response for every server invoking. I have to use the server reply to continue the program flow. The request is correctly reached to server and server do reply.The server is also on my machine. Here is the code how i make the server site call; QNetworkAccessManage...

How long do FireFox, Chrome, Safari, and Opera cache SSL/TLS session keys?

To try to use a reason SSL/TLS session key timeout on the server-side, I'd like to know how long popular browsers cache session keys on the client. Microsoft describes this information for Windows/IE here: http://technet.microsoft.com/en-us/library/cc776467(WS.10).aspx But, I haven't been able to find similar information for other po...

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 ...

Opera Mobile, offline web app development, and memory

I'm developing a data collection app for use on a HP iPAQ 211 running Windows Mobile 6. I'm doing it as an offline web app (go with what you know) using Opera Mobile 9.7 and Google Gears. Being it is an offline app, it is very dependent on Javascript for much of its behavior. I'm using the LocalServer, Database, and Geolocation component...

Drag and drop between frames - chrome

I have a website http://fewbs.com. I have a shortcuts (bookmarks) section onto the left. Here I provide menus and submenus and drag and drop of shortcuts and menus. Though I have been able to do it in IE and FF but its not working for opera and chrome. In IE it works by default, in FF by using -moz-user-focus: ignore; -moz-user-select:...

Making onmouseout and onmouseover work correctly in Opera while cursor moves between iframes

I have the following code. Here iframe2 will be on top of iframe1 near it's right. When the user moves the mouse on iframe2 the size should increase and it should move to the left and when the moves leaves iframe2 it must go back to it's original size. The Javascript below does it. The code works fine in Firefox, but in Opera 10.50 it do...

sIFR displays only the first line of text in Opera when on transparent background

I have implemented sIFR for the first time, on a test page. The code I have is below. It works fine in IE7, Firefox, Safari and Chrome, but in Opera only the first line of sIFR-ed text appears when the page first loads and after refreshing the page. But, if I scroll the page, all the text appears! It seems to have to do with transpare...

Scroll to anchor

I have the following userjs which is intended to remove anchor part of the URL but still jump to it: // ==UserScript== // @name PurgeAnchor // @include * // ==/UserScript== (function() { var reg=/^(.*)\#(.*)$/; var match=reg.exec(location); function ObjectPosition(obj) { var curtop = 0; if(obj.offsetParent) while(1) ...

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. ...