opera

possible to get POSTed parameters and RESPONSE content in Opera Dragonfly?

When I look at the Network tab in Opera Dragonfly, I'm not seeing POSTEd parameters or the RESPONSE content. Here's what I see: Raw Response HTTP/1.1 200 OK Server: Microsoft-IIS/5.1 Date: Thu, 15 Jul 2010 12:43:19 GMT X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: no-cache Pragma: no-cache Expires: -1 Conten...

Using absolutely positioned element inside inline-block element in Opera

I keep getting weird results under Opera 10.60 trying to absolutely position block element inside inline-block element. Sample code: <html><head><style type="text/css"> div.container { position: relative; display: inline-block; padding: 5px 100px; border: 1px solid red; } div.block { display: block; position:...

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 solution I'm looking at doesn't work in Opera. Should I care? With IE finally getting its act together with IE 9, Google's Chrome and other S...

how to determin if the current browser is in fullscreen mode in opera mobile

How in Javascript can we tell if the current browser is in fullscreen mode? is there an exact ratio of width/height i can depend on to measure this? Im hoping to have that info for Opera Mobile since it acts odd when it goes in full screen, it doesnt auto hide the small buttons at the bottom which means part of my bottom navigation is hi...

CSS Padding of a nested table ignored by Opera

Hello, I am using a table nested in a table which happens to have the border-collapse:collapse; property. The problem is with the padding property of the nested table, which Opera seems to ignore. To reduce it to the simplest possible, with the following HTML code...: <table style="border-collapse:collapse;"> <tr> <td> ...

what input field type forces the number pad mobile keyboard to come up when focused?

I tried the <input type="number" /> but on opera that outputs a strage input box coupled with a "up and down" handler, what i expected was a regular text field that once you focus on it prompts the number keyboard instead of the alphabets, is that even possible? PS im not trying to validate, it would be a nice user experience thats all ...

How do you remove the text reposition effect and black border when a user clicks on a <input type="button">button in IE and Opera?

Hi, In the latest Internet Explorer when I click on a button I see the text reposition to the right and down by a pixel or two. In addition, when I click on the same button in the latest Opera 10.53 I see the same text repositioning as well as a black border appear. Here is my button code: #buttons { position: relative; paddi...

Can Servlets and JSP be deployed in OperaUnite?

I have used opera unite for deploying a static html/css/javascript website just for fun. I liked it because even though i don't have my own IP address (As i purchase net connection from an ISP...mebbe they use a NAT box...)Still it works awwsumm...without any problem. Please explain me how it works.. Also tell me whether i can do serve...

How can javascript work perfectly in FireFox, but not work at all in other browsers?

I use FireFox as my main browser, especially when testing out my site, Avoru. However, when checking to see if my code was working properly across other major browsers (Google Chrome, Opera, and Safari), I found that none of my custom javascript seemed to work. Although the functions and code were clear in the page source, using typeof r...

Rotate in Opera

I just downloaded the latest version of Opera. Is there a way to make my elements (div tags) rotate with CSS3? ...

Opera v 10.60 won't detect linked JavaScript included in the <head> tag

I am learning jQuery for the last two days and I am stuck with this weird issue with Opera v 10.60 on Mac. I like to follow good development guidelines and therefore keep presentation(css), content and behavior (JavaScript) portions separate for any website I write. The head portion of my test html page has two script tags - First o...

Layout issues in Opera.

In Opera my website logo appears out of place. I have spent the last couple of hours trying to figure out how to fix this. It works just fine in Firefox and Chromium. The ID for the logo is simply 'Logo'. The site it located at http://next.icartrading.com/ If this isn't the best place to post this problem, tell me where else. Thanks! ...

Does Opera 10.6 properly support border-radius on fieldsets?

I am trying to get the border radius property to work properly on a fieldset in Opera 10.6, but it does not appear to be working correctly. Here is the html: <form method="post" action="character.php" class="form"> <fieldset> <legend>Insert</legend> <label for="txtCharacter">Character</label> <input type="...

Silverlight - Opera 10 - JavaScript invoke

Hi, I have problems with invoking javaScript code on page with Opera 10 browser. JavaScript code on page: function CallMe(){ alert("It works!"); } And I am invoking this code with: HtmlPage.Window.Invoke("CallMe"); In all browsers except Opera this works great. In Opera I get error: "failed to invoke: CallMe" What am I doing ...

Language identification (Opera, Safari, Chrome) in PHP

I'm using $_SERVER["HTTP_ACCEPT_LANGUAGE"]to detect the browser language, which works fine for Firefox and IE: Firefox: de,en-us;q=0.9,en;q=0.7,ru;q=0.6,ro;q=0.4,hu;q=0.3,zh;q=0.1 Internet Explorer: de Unfortunately, it doesn't work for the following browsers: Opera: en,en-US;q=0.9,ja;q=0.8,fr;q=0.7,de;q=0.6,es;q=0.5,it;q=0.4,pt;q=0...

window.print not working with opera browser

Hi, I am trying to open a print dialog box in Opera browser using javascript code as <script language=javascript> window.print(); //This is working in IE, Netscape, Firefox, but not working in Opera </script> where as if I am using the following code Opera browser understands and able to open print dialog box <input type="button" va...

CSS - using :hover on elements other than links...

Hey, For ages now my site has had a catalogue where the small image is directly within a link within a div. The link must only be around the image - but I do not want to use the + selector since this is not supported by some versions of IE (IE6 onwards I think it needs to support). The div has class "ImageHoverSpan" (it used to be a Spa...

<pre> tag making browsers close paragraphs

Hi, I'm having an issue with the HTML below: <html> <body> <p style="font-size: large"> Some paragraph text <span><pre style="display:inline">some span text</pre></span> additional paragraph text that continues ... </p> </body> </html> So this is just a paragraph that contains some preformatted...

JS in Opera: row.bgColor change causes issues

I'm using the following Java Script Code: function activeTr( row ) { row.bgColor='#F1E1D1'; document.body.style.cursor = 'pointer'; } function inactiveTr( row ) { row.bgColor='transparent'; document.body.style.cursor = 'default'; } Respective the following HTML: <table> <tr bgcolor="transparent" class="" onclick=...

How to force Opera's hover triggering

Hi everybody. I have a strange problem with hover in Opera browser. Here's the test case: <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <title>opera hover issues</title> </head> <style> .item { background-color:pink; border:1px solid red; color: maroon; height:100px; width:300px;...