Questions tagged [firefox3.6]

Version 3.6 of the Mozilla Firefox browser. Released on January 21, 2010.

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

115 questions
83
votes
7 answers

What browsers currently support JavaScript's 'let' keyword?

I'm developing an app and don't have to ever worry about Internet Explorer and was looking into some of the features present in A+ grade browsers that aren't in Internet Explorer1. One of these features I wanted to play around with is JavaScript's…
David Murdoch
  • 82,194
  • 38
  • 141
  • 186
80
votes
10 answers

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 () { alert("Left Ctrl"); } if () { alert("Right…
Misha Moroshko
  • 148,413
  • 200
  • 467
  • 700
20
votes
5 answers

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 / writing local files? I would love to be able to…
AJ.
  • 12,633
  • 18
  • 47
  • 62
18
votes
5 answers

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() { $element.parent().children().last().hide('slide', {direction:…
kosta5
  • 1,021
  • 3
  • 13
  • 32
14
votes
2 answers

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 page stays the same. How can I get Firefox to…
Amy B
  • 17,377
  • 12
  • 61
  • 81
14
votes
2 answers

"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 fine in Safari, but Firefox (3.6.3) reports the file to be "not…
Zhami
  • 18,307
  • 13
  • 46
  • 46
9
votes
3 answers

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 placed in the autocomplete pane, so I styled the…
DRaehal
  • 1,122
  • 9
  • 16
9
votes
2 answers

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, and how to fix this ? I work with Firefox…
Misha Moroshko
  • 148,413
  • 200
  • 467
  • 700
7
votes
1 answer

link element prefetching not working in Firefox 3.6

I am trying to test prefetching on Firefox 3.6. I'm using: I don't see any requests in Firebug's Net panel. When I look at the Apache 2 logs, I see only the page request, nothing after. I don't see the…
Geuis
  • 37,442
  • 53
  • 145
  • 213
6
votes
4 answers

Firefox 3.5 & 3.6: Unable to style
if it contains an

The following web page will render with unexpected result in Firefox 3.5. The first
element will not have a pink background, but the second will. Is this only happening for me? Is my code incorrect? Or is it a bug? Edit: This also happens…
Vitamin
  • 1,486
  • 1
  • 13
  • 26
6
votes
4 answers

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 can get the click working. But this is not like…
Ajaxe
  • 635
  • 1
  • 5
  • 15
5
votes
4 answers

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 = setTimeout(foo, delay); function bar() { // javascript…
Achaius
  • 5,326
  • 16
  • 59
  • 107
4
votes
1 answer

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; window.google_conversion_language = 'en'; …
Eduardo
  • 21,340
  • 11
  • 72
  • 92
4
votes
2 answers

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. @font-face { font-family:…
Olical
  • 32,800
  • 11
  • 50
  • 75
4
votes
2 answers

WebFont loaded from Google Font API looks awful in Firefox 3.6 on Windows only

For a site we're developing we've been using Lato from Google's WebFonts API. It works perfectly in every browser (even IE), except for one very important case: Firefox 3.6 on Windows XP (haven't tested in Win 7 yet). The font loads and is…
ChiperSoft
  • 1,109
  • 12
  • 24
1
2 3 4 5 6 7 8