opera

Run j2me jar file

Hi, I have downloaded Opera mini from http://www.opera.com/mini/download/nokia/nokia_6600/ I downloaded both the jad and jar files, opera-mini-4.2.13918-advanced-en.jad opera-mini-4.2.13918-advanced-en.jar and copied them to the bin directory of Sun java wireless toolkit, [C:\j2me emulator\emulator\bin] For running the file i'm using f...

How do I simulate a modal dialog from within an Applet?

On setVisible(true), I call the following code to start a modal dialog: private synchronized void startModal () { try { if (SwingUtilities.isEventDispatchThread()) { EventQueue theQueue = getToolkit().getSystemEventQueue(); while (isVisible()) { AWTEvent event = theQueue.getNextEvent(); Object source = ...

Javascript development addon for browsers

I need an addon that assists Javascript (client-side) web dev in browsers other than Firefox, for which Firebug suffices. Especially something for IE(7) and Opera(9) with which I'm currently experiencing issues. Info about dev tools like Firebug, are welcome for any browsers. ...

Is there a webserver that can be built for Windows Mobile 6 that dynamically generates pages?

Okay, Now admittedly this sounds like a silly question; But, I actually have a need for this. I use tiddlywiki alot, and it'd be really, really cool if I could save changes to a tiddlywiki in some mobile browser. But it seems that with all the mobile browsers that I've tried, changes I make to my tiddlywiki cannot be saved to an S...

Opera handles jQuery's animate method in a very strange way

I have a dropdown menu. Its height is animated with jQuery from 5px to 130px and vice versa. The menu worked fine while it was separated element (when I was developing it) but when another elements appeared Opera made a surprise: I marked first state as 1 and second as 2. Third state should be the same as first but as you can see it...

Embed SVG into HTML (Opera-specific).

I want to embed SVG image into UserJS script for Opera. The question is how to show this image on loaded page? I show PNG images using <img src='data://image/png;base64,...'>, but SVG images aren't shown being used this way. Using external SVG file is OK, but not 'data://image/svg+xml,...'. I can't embed SVG code to HTML directly, beca...

How to write user scripts so they work in both Opera and Greasemonkey.

I'm getting into user scripts at the moment. I know Opera is compatible with many aspects of Greasemonkey scripts, but not so much with other aspects. The GM functions emulation script will be required on Opera, and at the start I have if(window.opera) { var unsafeWindow = window; } But beyond that, what other things should I kee...

Changing body element class in Opera

I have this script which basically toggles a bgColor class on and off so that the background changes to black on the first button click and then returns to the default empty class on the second click. What I'm trying to figure out is why, in Opera 9.64, on the 3rd click of the button, the background stays black and only the background ar...

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 fixing the script itself, I can only hack around it using CSS and HTML. I'm trying to do something in the lines of : <!--[if IE 6]> <link r...

.innerHTML opera issue?

I'm trying to do : document.getElementById("header-text").innerHTML = "something interesting"; It's working fine with every browser except Opera (I'm running the latest version). Browsing the internet I found people saying that Opera does not support innerHTML. That doesn't sound right. Any pointers? Thanks Edit: Here is the id I'...

CSS page-break-after within table in Safari?

I want each row of a table to be printed (media="print", not "screen") on separate page. So my HTML looks like this: <table> <tr style="page-break-after: always;"> <td><p>Page 1</p></td> </tr> <tr style="page-break-after: always;"> <td><p>Page 2</p></td> </tr> </table> The page break works in Firefox and IE ...

<optgroup> in Opera using jQuery

I'm having an issue with <optgroup> in Opera using jQuery. First, here's the code: // returns a jQuery optgroup object function getSpaceOptGroup(locationName) { var location = locations.first(function(l) { return l.name == locationName; }); var optGroup = $("<optgroup label='" + location.name + "'></optgroup>"); ...

How to prevent the 'Save (image) as' dialog on Ctrl+click in Opera

I have to create an image gallery where user can select some images and then process them. The selection should be done via Ctrl+LeftClick of the mouse. It works well in FF and IE8, but when I Ctrl+click in Opera, new dialog "Save as" appears which causes saving the clicked image. How do I prevent opening the dialog in Opera? (it's prob...

Where can I find information on how to develop for Opera Unite? [close]

Opera Unite (a web browser that can act as a server) has just been released and they claim that you can build web services so other people can access your browser. I'm interested in making a program for the platform. Can someone point me to a site on how to develop for Opera Unite? Close: nevermind, the page I linked to has a link to...

Why does ie8's user agent return 'opera'?

My code at: http://www.mgxvideo.com/mgxcopy-dev/get_browser.php, returns Opera when I run IE8. My source is: <?php $browser = get_browser(null, true); echo $browser['browser']; ?> ...

Opera scripts and storing states(like GM_SetValue in greasemonkey)

Is there a way to store state of user script in opera? In GreaseMonkey one can use GM_SetValue/GM_GetValue. I saw one script that emulates them in opera using cookies but I don't like this idea for several reasons(mainly for limitied size of cookies). Is there another way to store state? ...

Opera: .js file won't load.

Hi All, I have a page that calls a script in the header, like so: <script type="text/javascript" src="http://www.discoverfire.net/analytics/l/a.js"&gt;&lt;/script&gt; (Note you will NOT be able to load this script as it is DND'd locally as a staging domain) Very Simple. Firefox, IE, Chrome all have no problem with this basic, squar...

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

Hello 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 in a XHTML, I do not have at all the same result. I can use the <object> or the <embedded> elements (but I think the last one is d...

jQuery UI 1.7.2 - Opera issue with Form dialog .

We are using jQuery 1.3.2 and jQuery UI 1.7.2 in our project. Everything was working perfect till we were using jQuery UI 1.7.1. Then we upgraded to jQuery UI 1.7.2, but it is causing a trouble in Opera (9.63). The issue is as follows :- There is a jQuery UI dialog with a textarea and a submit button which posts the data in "textarea" ...

Opera 9.02 freeze by JavaScript

this Script cause freeze . <input type="button" onClick="onClickHandler();" /> . function onClickHandler(){ var form = document.getElementById("form"); if(form){ var textarea1 = document.getElementById('textarea1'); if(textarea1){ if(textarea1.style.color.match(/170/)){ textarea1.value = ""; }else{ ...