Questions tagged [firefox2]

Version 2.0 of the Mozilla Firefox browser, which was released on 24 October 2006. This version was supported until 18 December 2008.

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

18 questions
3
votes
1 answer

How do I get jQuery to work with a Greasemonkey 0.8 script (On Firefox 2), with no internet to the PC?

I'm using Firefox 2.0.0.11 and Greasemonkey 0.8.x and the latest jQuery version (1.3.2) that works with Greasemonkey 0.8. I try to load this Userscript: // ==UserScript== // @name TEST // @include * // @require jquery.min.js // @grant…
bernte
  • 1,184
  • 2
  • 19
  • 34
2
votes
3 answers

Firefox 1.5 and 2 css absolute position bug

I have the following html/css that is causing problems in Firefox 1.5 and 2, but is working correctly in IE6/7/8, Safari, Chrome, Opera and Firefox 1 and 3.
Buddy
  • 6,603
  • 1
  • 21
  • 16
1
vote
1 answer

Firefox 2 freezes when trying cross-browser inline-block trick

I am trying to design a form that uses the CSS inline-block display value for a table-like arrangement. I know that some browsers including Firefox 2 don't know how to handle it, so I used this method to make it work in all browsers. However,…
Elias Zamaria
  • 96,623
  • 33
  • 114
  • 148
1
vote
1 answer

YUI3 event delegation not working in FF2

I am using YUI 3.3.0. Event delegation not working in FF2. Any clue ? Thanks in advance. container.delegate("click", function(e) { alert("hi"); //alerts except in FF2 },"td, li");
Aneesh
  • 1,193
  • 3
  • 16
  • 26
1
vote
4 answers

Which Versions of FireFox Should I Support?

I have recently built a template for a website that I see looks slightly different in different versions of FireFox. I was wondering, as a rule of thumb, which versions of FireFox are worth supporting? FF2 and up? FF3 and up? Thanks for your…
Oliver Spryn
  • 16,871
  • 33
  • 101
  • 195
1
vote
1 answer

Supporting mulitple versions of Firefox (2.*, 3.*). What should I test?

I have a situation in which I did web development (Wicket running on Tomcat) on Firefox 3.6.3, and now need to support Firefox 2.0 as well. Do you have any tips on what I should expect to break or where I should focus my testing?
Alex B
  • 24,678
  • 14
  • 64
  • 87
1
vote
2 answers

How do I stop certain values of input, based on text elsewhere in the page?

I have an existing script which is running perfectly! It is coded for Firefox 2.x and Greasemonkey 0.8.x and I can't use jQuery! OLD WORKING SCRIPT: //--- Make sure this list of names is all uppercase. var usersWhoCanSetPriority = ['JOHN', 'LUKE',…
bernte
  • 1,184
  • 2
  • 19
  • 34
1
vote
3 answers

How to disable an input field, based on the displayed user text?

I have this code snippet that works: var oldInput = document.getElementsByName ("prio"); oldInput[0].setAttribute ("disabled", "disabled"); And this is the relevant, target-page HTML (corrected):

(CONTENT)

bernte
  • 1,184
  • 2
  • 19
  • 34
1
vote
1 answer

Manipulate an input field

Is it possible to remove an input but show the value with Greasemonkey? Or disable it? For example: I have no idea how to write any userscript. :( It is for the PC in my company and I…
bernte
  • 1,184
  • 2
  • 19
  • 34
1
vote
2 answers

Wrapping text with css

I have the following html: And the css styles are: fieldset span.formrow label.description { width: 150px; display: -moz-inline-box; display: inline-block; } My…
Pablo
  • 2,054
  • 8
  • 30
  • 56
0
votes
0 answers

Disable ESC behavior on Firefox 2.0 browser with jquery

Browsers like Firefox use the ESC key to stop loading the current page, stopping any request on curse. I need to stop this behavior. I need to stop/disable the browser behavior and replace it for another set of actions I need to execute on ESC key…
marymvlg28
  • 71
  • 5
0
votes
1 answer

In Firefox 2, usage of overflow:hidden makes other divs overlap current div

When I use overflow:hidden for div which is positioned absolute (for menu), other div overlaps. Here is the code. It works fine in FF3. Any help appreciated. Please note that html should be as it is. Also if you can provide solution, just by…
0
votes
1 answer

OK, here's a screenshot of what it's SUPPOSED to look like: And here's a screenshot of how it looks in Firefox 2 (on both Mac & PC)... Every other browser gets it right (even IE6?!). The source code is an Unordered List using Sprites with…
Jack
  • 9,615
  • 18
  • 72
  • 112
0
votes
1 answer

Disabling autocomplete in Firefox 2

The ff. works in Firefox 3 but not in Firefox 2. Anyone know why and if there is a work-around?
Chry Cheng
  • 3,378
  • 5
  • 47
  • 79
0
votes
3 answers

Word wrap in Firefox 2.0

Word-wrap is not working in FF 2.0. I know FF above 2.0 supports this word-wrap. But I want to know is there any alternatives do fix this issue for FF2.0. It works fine with all IE versions. .wrapgridtext { word-break : break-all; max-width…
Gabriel Susai
  • 450
  • 1
  • 6
  • 16
1
2