Tagged Questions
Version 3.6 of the Mozilla Firefox browser, which was released on 21 January 2010.
21
votes
3answers
2k views
Check Ctrl / Shift / Alt keys on 'click' event
How could I identify which Ctrl / Shift / Alt keys are pressed in the following code ?
$("#my_id").click(function() {
if (<left control key is pressed>) { alert("Left Ctrl"); }
if ...
17
votes
5answers
9k views
HTML 5 File API
I hear that Firefox 3.6 adds support for the HTML local file API (Announcement here).
Does this mean that I can access local files from javascript?
Can anyone point me to examples for reading / ...
13
votes
3answers
2k views
What browsers currently support javascript's 'let' keyword?
I'm developing an app and don't have to ever worry about IE and was looking into some of the features present in A+ grade browsers that aren't in IE.
One of these features I wanted to play around ...
8
votes
2answers
976 views
Why the vertical scroll bar moves automatically?
I don't understand why the vertical scroll bar moves automatically to the most top position when "Line 9" clicked, for example. Further clicks does not move the scroll bar. Could anyone explain why, ...
6
votes
4answers
2k views
Silverlight Issue with Firefox 3.6?
Recently I updated my firefox to 3.6 and the silver light app on my web app has weird behavior.
No button click happens in the silverlight app, it just gives it the focus and if we 'TAB' around, we ...
5
votes
2answers
521 views
Useless setTimeout call (missing quotes around argument?)
I have this sniplet of code in jQuery
$element.parent().children().last().hide().show('slide', {direction : 'left'}, 700, function () {
$element.delay(2000, function() {
...
5
votes
4answers
80 views
Firefox 3.5 & 3.6: Unable to style <address> if it contains an <ul>
The following web page will render with unexpected result in Firefox 3.5. The first <address> element will not have a pink background, but the second will. Is this only happening for me? Is my ...
4
votes
1answer
125 views
Javascript snippet freezes Firefox3.6
This code is freezing Firefox 3.6.
// Google Code for Converted Users Remarketing List
function converted_remarketing() {
window.google_conversion_id = 1018522404;
...
4
votes
0answers
2k views
Selenium 2 WebDriver to use Custom Profile
I'm trying to automate the interaction with a website that generates documents with MIME type application/vnd.wap.xhtml+xml. I am using Selenium 2, the WebDriver and the FirefoxProfile.
Because ...
4
votes
1answer
415 views
Firefox selecting whole silverlight area causing browser scroll bars to become enabled
This only seems to be a problem now with firefox 3.6
When you click anywhere on the page which is one big embedded silverlight object the little broken outline appears, the same as when you say click ...
3
votes
2answers
596 views
Google copy link location annoyance? [closed]
Sounds like a stupid question, but this really bothers me and I don't see an easy workaround. Every time I need to post link to PDF found by google, I have BIG trouble.
1) when I click on the link ...
3
votes
1answer
288 views
JQuery UI autocomplete not scrolling with arrow keys in Firefox
I am working with the JQuery UI autocomplete 1.8 with JQuery 1.6.1. (Getting newer versions of software is extremely difficult in my company so I am stuck with these.)
I have a long list of strings ...
3
votes
4answers
1k views
How to load javascript function in window.onload after some delay
I have couple of functions that should be triggered after some delay in onload event. It works fine in chrome but not in Firefox.
function foo() {
// javascript code
}
window.onload = ...
3
votes
2answers
206 views
How to register my own firefox extension?
I am trying to learn how to write firefox extensions. I download an HelloWorld example from here but I can't figure out how to register it.
I found my profiles extension folder (Easy since I use the ...
3
votes
2answers
423 views
Is that possible to set gradient on text color?
Firefox 3.6 allows to set gradient on backgrounds.
Is that possible to set gradient on the text color as well ?
For example:
HTML:
<span>Hello</span>
CSS:
body {
background: ...
3
votes
1answer
257 views
Firefox 3.6 crashes when trying to display a thumbnail
I use Uploadify to upload multiple pictures to server.
I want to display pictures thumbnails before the pictures are actually uploaded to the server, based on this. I use Firefox 3.6.6.
Here is how ...
2
votes
2answers
91 views
Why does this @font-face code not work in Firefox 3.6?
I am trying to get a font to load via the @font-face CSS rule. I have got it working in every browser (including IE6) apart from Firefox 3.6 and maybe even more below that. Here is my current code.
...
2
votes
2answers
72 views
firefox 3.6.20 regex giving inconsistent results
I've been debugging this one application for a while and it led me to this test case. When I run it in firefox 3.6.x it only works 50% of the time.
var success = 0;
var pat = ...
2
votes
1answer
348 views
Firefox won't submit a form created by JavaScript
I need to create a form with a few inputs when an event happens. My code is below.
Chrome submits fine - the alert box shows and the page changes.
Firefox does not work - the alert box shows but the ...
2
votes
1answer
404 views
Can't change volume in HTML5 Audio tag in FireFox
On this page http://www.metrovancouver.org/services/solidwaste/Holiday/Pages/Song.aspx
I'm using a regular <audio> tag so users can listen to the song. I have a flash fallback on it too for ...
2
votes
1answer
111 views
Adobe Reader plugin eating certain keydown events only in Firefox 3.6
I seem to have exactly the same problem as this person: http://forums.adobe.com/thread/618752 He also has example code that purports to demonstrate the problem.
Basically, I have a webpage consisting ...
2
votes
5answers
4k views
Text Box size is different in IE 6 and FireFox 3.6
I am facing issues with text box size when veiwing in Fire Fox 3.6.
< input class="dat" type="text" name="rejection_reason" size="51" maxlength="70" onchange="on_change();">
style is as:
.dat {
...
2
votes
1answer
955 views
document.getElementById() returns null when using mozrepl (but not in firebug)
I'm trying to use the mozrepl Firefox extension to give me a Javascript REPL from within emacs.
I think I've got it set up correctly. I can interact with the REPL from emacs and can explore the ...
2
votes
1answer
1k views
firebug console error
I try to learn to use Firebug (debug).
I try to run "bennadel Firebug debug example".
URL SCRIPT http://www.bennadel.com/blog/1459-FireBug-s-Console-dir-vs-DOM-Tab.htm.
With:
Mozilla/5.0 (Windows; ...
2
votes
2answers
479 views
Firefox Gecko SDK : NPP_GetValue not getting called
I have tried out the NPRuntime sample provided with the Gecko SDK 1.9.1 with the help of this link.
It works perfectly fine with Firefox 3.6.
Following the above steps I created a new scripting ...
2
votes
4answers
554 views
Firefox 3.6 destroyed my page styling!
Don't really want to blame mozilla on this one, i'm sure it could be me doing something silly but the page at:
www. neverMindFixed .com
the presentation will work fine on other browsers, just not ...
1
vote
1answer
345 views
Image loading: JavaScript onLoad and Image::complete (FireFox 3)
When loading images into a JavaScript Image object, I would presume that, once the load event is triggered for an image i, then i.complete should be true. Either that is not happening or (more likely, ...
1
vote
1answer
77 views
Can a firefox extension enable/disable other extensions working?
I am working with firefox extensions. I want an option of enabling other extension in the options dialog box. this will depend on users choice.
Like for doing some work there are 3 extensions user ...
1
vote
1answer
546 views
why my dispatchEvent works for mouse events but not key events
I am thinking about making a Firefox add-on of my own and doing some experiments for the functionality I might be adding in it.
As I am just checking the feasibility of things for now, I just got a ...
1
vote
0answers
317 views
Firefox/Gecko iframe doesn't render, is this a browser bug?
We have a public Cognos 8 BI reporting solution running inside an iframe. Cognos 8 BI supports Firefox and IE. IE works fine. With Firefox 3.6.13 (the current version) when the report parameters are ...
1
vote
2answers
378 views
externalinterface.call won't call the JavaScript function - Firefox 3.6
I have a function defined in JavaScript like so:
function fadeBack() {
alert("fadeBack called");
};
I call that function from my Flash file like so:
import flash.external.*;
...
1
vote
3answers
148 views
CSS: clear: left working too well?
this is an issue that i have every now and again and i;m not sure what the solution is.
i have a 2 column layout (left strit, and then main area).
in the main area, i sometimes have a secondary 2 ...
1
vote
0answers
307 views
Problem with Firefox “manifest” file
I was trying out this XUL tutorial on Firefox 3.6.13.
The example extension in the tutorial is meant to find files. This is my manifest file:
content findfile ...
1
vote
1answer
180 views
Why does the following styling not work in firefox? (it works in all other browsers)
Edit: The copyright message does not appear on screen, but it is there in the HTML source of the Firefox window!
ASP.NET page:
<%@ Page Language="vb" AutoEventWireup="false" ...
1
vote
0answers
128 views
Server error fires for IE but not Firefox
I have a RenderPartial that yellow screens IE at this line
int addLocations = Model.Options.OfType<myOrderRowOption>().Single().AdditionalLocationsCount;
error is:
Exception Details: ...
1
vote
2answers
1k views
HtmlUnit & GWT error
I've a GWT application that I try to index.
I am using HtmlUnit to get the content of the generated HTML:
WebClient webClient = new WebClient(BrowserVersion.FIREFOX_3_6);
HtmlPage refDesing = ...
1
vote
1answer
758 views
FireFox CSS Table Extra Border Line Problem
I encountered a table border line CSS problem in firefox, when the css border-collapse is collapse, and have 2 merged cells, one of them hava 1px border. A extra unwanted border line exsits on the ...
1
vote
1answer
270 views
web page layout issue in firefox 3.6 /mac os
This web page does not display correctly in firefox 3.6 /mac os.
http://solcuisine.com/dev/?page_id=2
.. and here's how it looks in firefox3.6/mac:
firefoxmac.png located in dev/ directory of same ...
1
vote
0answers
41 views
Supporting mulitple versions of Firefox (2.*, 3.*). What should I test?
I have a situation where I did web development (wicket running on tomcat) on Firefox 3.6.3 and now need to support Firefox 2.0 and Firefox 3.6.3. Do you have any tips on what I should expect to ...
1
vote
2answers
358 views
Silverlight control goes black in FF during fullscreen (SL 4, Firefox 3.6, multiple monitors)
If I click to make my Silverlight object fullscreen in Firefox 3.6 it works successfully, but then if I select a different window (I'm running two monitors so can do this) then a new window appears in ...
1
vote
1answer
348 views
Confirm Box from within Silverlight 4
I am having trouble getting the following code to work in FireFox (3.6.4), however, it works perfect in Chrome (5.0.375.70) and IE (8.0.7600.16385).
Operating system is Windows 7 32 Bit.
...
1
vote
0answers
33 views
Why does the existing rows are not displayed when I added two rows to the jsp in Firefox3.6?
I have added two rows to a jsp which are displayed one at a time based on the text entered. There are two other rows which are already existing and they are displayed based on their own conditions not ...
1
vote
1answer
444 views
Firefox why window.opener is defined even for a new tab
I am porting quite old corp application from IE to Firefox. Here is my situation.
User goes away from computer for a while and his session becomes expired.
When user tries to access something in ...
1
vote
2answers
1k views
“not well-formed” warning when loading client-side JSON in Firefox via jQuery.ajax
I am using jQuery's ajax method to acquire a static JSON file. The data is loaded from the local file system, hence there is no server, so I can't change the mime type.
This works fin in Safari, but ...
1
vote
1answer
536 views
accessing embedded object with jquery not working in firefox 3.6
this code in my plugin used to work just fine:
jQuery('#embedded_obj', context).get(0).getVersion();
and the html...
<object id="embedded_obj" ...
1
vote
2answers
692 views
Firefox 3.6 - location.href not working in JSP
I have JSP page with method = POST and action='/mydir/mypage/nextpage'
I have a button:
<button title='Continue' onclick="this.form.perform.value='cancelButton'; ...
1
vote
1answer
89 views
embedded image data
I've noticed that in recent versions of Firefox, some images are displayed even when I disable images (e.g., Google News). Apparently this is due to images being embedded in the code using the ...
1
vote
1answer
532 views
Components.interfaces.nsIProcess2 in Firefox 3.6 — where did it go?
I am beta testing an application that includes a Firefox extension as one component. It was originally deployed when FF3.5.5 was the latest version, and survived 3.5.6 and 3.5.7. However on FF3.6 I'm ...
1
vote
1answer
287 views
Why is console.log statements not appearing in my FireBug console anymore?
I'm using FF 3.6 and FireBug 1.5.0
my console.log statements are no longer appearing in my firebug console. is anyone else experiencing this? is there a setting somewhere that got switched that I ...
1
vote
10answers
4k views
Firefox 3.6 and CSS difference from previous versions of Firefox 3.5 and back?
So, in upgrading to Firefox 3.6, the CSS broke on input boxes. The padding has increased -- it might also be the font-size is somehow behaving different. Wondering if anyone else has seen this ...