Hi there,
Ive been writing a simple jquery function that turns a div with a list of images into a carousel. Here is the markup..
<div id="carousel">
<ul>
<li><img src="images/music1.jpg" /></li>
<li><img src="images/music2.jpg" /></li>
<li><img src="images/music3.jpg" /></li>
</ul>
</div>
and in my carousel.js file i hav...
Hi All,
i want to determine that the browser of the client machines in opera or not using javascript.
Thanks in advance
Avinash
...
I'm experimenting with jQuery plugins. I have this code to fade in a "lightbox":
$('#cleverbox')
.css({ opacity:0, visibility:'visible' })
.animate( {opacity:1}, 2000 );
It works fine on Firefox and Chrome, but in IE (7 and 8) and Opera the element just appears rather than being faded in. There are a bunch of similar questions...
Hi,
I am curious how does the Opera browser implement it's keyboard navigation, where you can do Shift+(Up|Down|Left|Right) and you travel along a row or a column.
How would you implement this in javascript?
Thanks
...
Is there a JavaScript hack I could place in the URL field which would guide mobile browsers to "m." prefixes and guide my desktop to "www." prefixes, if I provide the "<domain>.<root>" suffix?
I think this would be useful for both Weave and Opera Link users.
...
I've got a problem which boils down to the fact that dojo node selection doesn't function on a s60 mobile platform and Opera Widgets. Something as simple as dojo.byId throws an error while document.getElementById is ok.
How does dojo node selection differ from your vanilla JavaScript? Is there any setting in Opera Widgets which can be ...
For the past two days i have been looking around the net to find how Opera made their pre-alpha build
with that UI. I mean its like built with windows shell
here are some screenshots
any tutorials , books or videos would be helpful
P.S. I also saw the win 7 SDK but its all C++ samples and i learn C#
...
if (localStorage)
{
var menushown = JSON.parse(localStorage.getItem("menuState"));
if (!menushown)
{
menushown = menuDefaultState;
}
}
else
{
menushown = menuDefaultState;
}
The above JavaScript fails in Opera 10.10. It complains that localStorage is undefined on the second line. This is true, but because o...
I noticed that the launching of Java applets using deployJava.js seems to have stopped working on some Mac browsers. Safari and FF still work, but Opera and Chrome send the user to Java installation page, as if the plugin was not found.
Take for example this. If you click the launch button in Opera, it sends you to a Java installation...
Is there a release or any news on when they will support border-radius?
I heard that they have supported it in the past, with something like -o-border-radius, what happened to it?
...
I’m currently using
@media screen and (-webkit-min-device-pixel-ratio:0) {
example {}
html:first-child example {}
}
to target Safari + Opera 9.2
Is there a safe way to target opera gte op 9.5 or lte op 10?
(for example it won't be picked up by an upcoming version of firefox)
By the way, type="text/opera" isn't working any...
I'm writing an http proxy program in C++ and I need it to automatically configure the default browser proxy settings to use my proxy. With IE i can just modify the registry, Chrome has a command line parameters that can be used, firefox has the prefs file, but I can't figure out how to do it for Opera. It needs to be compatible with all ...
Hi,
I have need to communicate between two iframes of the same domain, which live inside a parent page on a different domain that I have no control over.
This is a Facebook app and the basic layout is this
apps.facebook.com/myapp
L iframe1 (src='mysite.com/foo')
L iframe2 (src='mysite.com/bar')
I need frame1 to talk t...
Hi,
How do I locate an element within SVG in Opera, given coordinates?
elementFromPoint(x,y) works fine with Firefox, but seems to fail with Opera, returning always the whole SVG and not the particular element.
One might wonder why do I need it at all. Well, simply because I'd like to highlight the SVG element under the cursor, and be...
Having issues getting specific background images to display in Firefox/Opera, all other browsers are playing ball (except obviously IE, for which I've had to compromise).
Currently, Opera won't allow multiple background images like so:
background-image: url('/images/h2_default_bg.png'), url('/images/dashed_bg_default.gif');
background-...
This is a weird CSS issue I was experiencing while trying to fix a footer that rendered properly in IE 6 but failed to render properly in IE 7. Here's what the issue was.
There is this css class, clearer, shown below:
.clearer {
clear: left;
line-height: 0;
height: 0;
}
In the JSP/HTML output, there were either:
<div ...
In IE, Firefox, Chrome and most Windows-based interfaces that I've used, the Tab key can be used to navigate from one form field or hyperlink to the next (e.g. "actionable" items) (note: I have not tested on other Operating Systems)
However Safari and Opera skip all hyperlinks in a web page when tabbing. IMHO its a usability bug but I ...
Opera mini browser can save HTML pages in OBML (Opera Binary Markup Language) format for offline browsing. I am wondering if I can convert a HTML file to OBML format and save in my phone for later viewing.
For doing so, I need details about the OBML format, which seems to be undocumented. Do you know more details on this OBML format?
T...
Hi,
I tested my site in different browsers now (IE, FF, Safari, Chrome) and so far sIFR works fine. But when it comes to Opera the text, which goes over more than one line, is rendered in one single line without breaks.
Can this be solve, so that it's rendered correctly?
...
I am trying to understand an issue where event-listener registration on plugins doesn't work in Opera unless i delay them.
In particular, this doesn't work:
document.onload = function() {
plugin.addEventListener("foo", function() { alert('onFoo'); }, false);
}
while delaying the addEventListener() call somewhat through e.g. an al...