Questions tagged [firefox-5]

Version 5 of the Mozilla Firefox browser. Released on June 21, 2011.

Mozilla Firefox is a free and open source web browser developed for Microsoft Windows, OS X and Linux (including Android) coordinated by Mozilla Corporation and Mozilla Foundation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. wikipedia

32 questions
7
votes
1 answer

Firefox 5 not using select="selected" value on page refresh, retaining old value

I've found a strange bug in Firefox 5 (I don't have access to 4 right now). But, I think it was probably working in Firefox 4 because I just got a new computer and I don't remember seeing this error before. I have a couple of select boxes. The…
ember
  • 365
  • 5
  • 11
6
votes
2 answers

How can I get the SSL Certificate info for the *current* page in a Firefox Add On

I'm trying to develop a Firefox extension/add-on that needs access to the SSL Certificate information of the page that is currently loaded. Once I have this information I plan on modifying the contents of the page based on the SSL information. …
Tom Hennen
  • 4,746
  • 7
  • 34
  • 45
3
votes
2 answers

window.opener.focus() problem in FF5+

I'm opening new window with next code: window.open(url,pageName1,"menubar=1,resizable=1,scrollbars=1,status=yes,width=1050,height=820"); so window is not modal In new window I'm calling: if (window.opener) window.opener.focus(); in IE, Chorme,…
Andrey Koltsov
  • 1,956
  • 6
  • 24
  • 43
3
votes
1 answer

Login page not redirecting after login in firefox 5

I'm writing an application that has a login page. The application is redirecting to the login page just fine, and when I click 'Log In', the user gets authenticated just fine. The last action of the log button postback method is to redirect the user…
mccow002
  • 6,754
  • 3
  • 26
  • 36
3
votes
2 answers

Firefox 5 dispatchEvent in Firefox

I have some code that uses dispatchEvent to simulate clicks and the same exact code works fine in Chrome but doesn't work in Firefox. Here's the code: var evt =…
David K.
  • 6,153
  • 10
  • 47
  • 78
2
votes
1 answer

Firefox 5 DOM bug on windows 7 (and not XP)?

I have a table which consists of two divs, an upper and a lower. The lower div is scrollable and as you scroll, the upper div keeps up with this (so you can see the columns). On windows XP, FF 5 it works fine, but on FF 5, Win 7 when I scroll across…
Jean
  • 721
  • 3
  • 9
  • 14
2
votes
1 answer

Is there a plug-in sample for Firefox 5 written in C++?

I've seen several examples, but for libraries with Gecko 1.9.2 or earlier, how do I create a plugin for Firefox 5 in C++? The strange thing is that the official website just to gives me examples for Firefox v. 1.5 through v. 3.6 which is why I have…
luinix
  • 21
  • 1
2
votes
2 answers

Firefox 5, 6, 7 and XULRunner: Which versions are which?

I'm trying to recompile a Firefox extension that has binary components for use with Firefox 5 now that the beta is out. According to this I need to rebuild the binary components. What I can't figure out is which xulrunner to download and build…
i_am_jorf
  • 53,608
  • 15
  • 131
  • 222
1
vote
1 answer

"Submit is not a function" error in Firefox in dynamically CREATED form without other submit inputs

In Firefox 5's error console (but not in IE 9) I get the error "myForm.submit is not a function" when I call the following javascript function (in an external script file): function go(url_go, arr_POST_vars, str_method) { var str_method =…
Stefan
  • 3,850
  • 2
  • 26
  • 39
1
vote
1 answer

coldfusion uploadify http 302

I was using uploadify v2.1.4 for my coldfusion upload multiple files. It worked well in IE 9 but occured an error http 302 in firefox 5 $('#uploadfile').uploadify({ 'uploader' : 'uploadify.swf', 'script' : './upload.cfm', 'cancelImg' :…
Prast
  • 57
  • 5
1
vote
3 answers

Weird javascript behaviour FireFox 5.0

I've had a javascript running for quite som time and I've never experienced any problems in IE or in earlier version of firefox. In Firefox 5.0 however, if fails. Note! The formula has been removed to simplify the example, as I've confirmed that the…
Kman
  • 4,809
  • 7
  • 38
  • 62
1
vote
2 answers

Jquery browser version detection

OS: Windows XP Browser: Firefox 5.0 (use it and update it from 3.5) Jquery: 1.6.2(from cdn http://code.jquery.com/jquery.min.js) In my jquery script I use browser detection feature and it returns me 1.9.2.15 version, but here :…
Dmytro
  • 2,200
  • 3
  • 20
  • 32
1
vote
2 answers

enabling Firefox 5.0 javascript dump()

I'm going through firefox extension writing bootcamp and somewhere along the way the video's author is speaking about switching browser.dom.window.dump.enabled in about:config to true. This option is no longer present in firefox 5.0. From what I…
nietaki
  • 8,758
  • 2
  • 45
  • 56
1
vote
1 answer

Firefox 5 styling checkbox strange background

The code bellow reproduces a behavior I've come across today that's pretty strange (only happens on windows). On hover, Firefox colors the checkbox with a black border. As seen on the image. All other browsers (chrome, safari and all IE's) don't…
Frankie
  • 24,627
  • 10
  • 79
  • 121
1
vote
4 answers

Working with XML in a Firefox Add-on(ex Jetpack)

I'm currently developing a Firefox add-on(using https://addons.mozilla.org/en-US/developers/docs/sdk/1.0/ ) that consumes an API where the return data is in xml. My problem is that I need to parse the returned data, and would like to do that using…
1
2 3