Tagged Questions
Version 3.0 of the Mozilla Firefox browser, which was released on 17 June 2007. This version was supported until 30 March 2010.
13
votes
9answers
93k views
How to get the file path from HTML input form in Firefox 3
We have simple HTML form with <input type="file">, like shown below:
<form><label for="attachment">Attachment:</label> <input type="file"
name="attachment" ...
11
votes
3answers
3k views
Is there a XDomainRequest equivalent in Firefox?
Is there an equivalent to Internet Explorer's XDomainRequest in Firefox or any of the other browsers?
I'd like to access a service/website outside of my domain.
11
votes
5answers
2k views
Can Firefox's “view source” be set to not make a new GET request?
This is sort of tangential to coding, but programmers often do "view source" on their own pages and on others' pages. I learned that when you do the normal View Source in Firefox, it takes the URL ...
7
votes
5answers
956 views
Why is Firefox 3 breaking with console.log
I have the following:
console.log (a.time_ago() + ' ' + b.time_ago());
This is breaking in FireFox 3, meaning when FF hits that line in the JS, it goes no further. Strangely if I have Firebug open ...
7
votes
11answers
1k views
Chrome or Firefox (or browser-agnostic) for an intranet app?
If you were designing a core business intranet app for a small business, and wanted it to be as responsive-feeling as possible, where the staff are indifferent to being stuck with a certain browser, ...
7
votes
4answers
5k views
Firefox 3 doesn't apply my xslt stylesheet, but other browsers do
I'm trying to serve dynamically generated xml pages from a web server, and provide a custom, static, xslt from the same web server, that will offload the processing into the client web browser.
Until ...
7
votes
4answers
2k views
SharePoint and Firefox 3
I think most of the SharePoint developers and administrators know that with the change form Firefox 2 to Firefox 3 some functionality of SharePoint have became unavailable.
Especially adding ...
6
votes
3answers
5k views
FireFox 3 line-height
Firefox 3 has introduced a new behavior in which line-height, when unset, differs from how other browsers render it. Thus, a critical section maybe render too high in that browser. Setting a global ...
5
votes
2answers
11k views
How to get Selenium working with PHP/Firefox3 on Linux
I am trying to get Selenium RC working with Firefox 3 on Linux with PHP/Apache but am experiencing problems. Here's what I've done:
I have installed the Firefox Selenium-IDE extension.
On the web ...
5
votes
5answers
1k views
Read Firefox 3 bookmarks
Firefox 3 stores the bookmarks in a sqlite database.
There are several hacked sqlite java libraries available.
Is there a way to hack the sqlite database in java(not using libraries) to read bookmarks ...
4
votes
1answer
806 views
Getting HTML out of selection / range from a web page in Mozilla Firefox
I currently using the following the get the selected text from a webpage into a custom firefox extension:
getSelectedText: function(){
var textWindow = document.commandDispatcher.focusedWindow;
...
4
votes
5answers
13k views
AJAX https POST requests using jquery fail in Firefox
I have a simple list of records in an HTML table with a delete link for each row. The delete link shoots off an AJAX post request to a fixed url that looks like: "/delete/record/5"
The AJAX request ...
4
votes
2answers
1k views
Why does FF3 say “Permission denied to get property HTMLDivElement.tagName”?
When I run this through FireFox 3:
<script type="text/javascript" src="../resources/dojo-1.2.3-src/dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script type="text/javascript" ...
4
votes
7answers
14k views
How can I change Firefox's proxy settings from an external program?
I've seen a few programs (eg Charles Web Developer Proxy) that are able to modify Firefox's proxy settings. The sequence is:
Firefox is running, with the users proxy settings.
User starts the ...
4
votes
7answers
2k views
Style sheet images aren't reloaded by Firefox or Safari
We have found out that Firefox (at least v3) and Safari don't properly cache images referenced from a css file. The images are cached, but they are never refreshed, even if you change them on the ...
3
votes
2answers
557 views
Selectable input fields and textareas but no other content selectable in Firefox?
I need to prevent users from selecting elements in my web app UI, except for text in input fields and textareas. For Firefox, the technique seems to be to use this css:
* { -moz-user-select: none; }
...
3
votes
1answer
288 views
Firefox 3.5 “hangs” when rendering TABLE
I have a simple HTML Table (10 columns x 500 rows). When the page loads I start to scroll down and the browser hangs, and won't allow me to scroll for 3-5 seconds. This usually happens around row ...
3
votes
4answers
962 views
Firefox 3 syntax error with external css
I get a strange syntax error in Firefox 3.0.10/Leopard when using the following html/css:
foo.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
...
3
votes
1answer
944 views
HTML 5 Reference Implementations
I'm looking for a good article or description of what HTML 5 actually is or isn't. At Google I/O last year, I kept hearing that Google Gears can be thought of as a reference implementation of HTML 5. ...
3
votes
3answers
964 views
@import in @media not working in Firefox 3.0.3
This is what I have, which works in IE7, but not in Firefox:
@media screen { @import 'screen.css'; }
It works outside of the @media block in Firefox:
@import 'screen.css';
UPDATE:
This works:
...
2
votes
2answers
544 views
Firefox Addon Development : Detecting non-compatible addons?
Few addons are not compatible with mine, so how to detect their presence and inform the user.
Thanks
2
votes
3answers
1k views
GWT/Firefox: getOffsetHeight() always returns 0
Using GWT 1.6.4, I have the following code to retrieve the dimensions of the browser window:
RootPanel panel = RootPanel.get();
int height = panel.getOffsetHeight();
int width = ...
2
votes
3answers
4k views
Firefox Bookmarks SQLite structure
I am trying to write a Firefox 3 add-on which will enable me to easily re-tag bookmarks. For example I have some bookmarks tagged "development" and some tagged "Development" and I would like a way to ...
2
votes
4answers
11k views
jQuery each tr.children is undefined in Firefox 3.0
I have a snippet of code that I'm working with to filter rows in a table. It works perfectly in every browser other than Firefox v3.0.x (works fine with 3.1 beta 2). When I run the snippet in ...
2
votes
2answers
488 views
Firefox 3 Centering Bug (any CSS Hacks or Fixes?)
I'm having issues with centered items in Firefox 3. (I searched and couldn't find this answered -- hopefully not a re-post)
I stripped the code down to just two elements to demonstrate this -- you ...
2
votes
3answers
2k views
How can I access the bookmarks toolbar using only shortcuts in Firefox 3
I am not interested in accessing the bookmarks menu or sidebar. The specific goal that I'm trying to accomplish is to be able to easily navigate (using only the keyboard) through the live bookmarks ...
2
votes
1answer
1k views
How to create firefox3 sidebar?
Hi I want to create sidebar in Firefox 3 but have no clue how to do this.
I find tutorial on MDC (https://developer.mozilla.org/en/Creating_a_Firefox_sidebar) but after installation extension do not ...
2
votes
7answers
900 views
Images & Hyperlink Borders - Ghost 1px x 1px Border
I've an image that is wrapped in an anchor tag that, through jQuery, triggers an action somewhere else on the page. When I click on the image, two tiny 1px by 1px boxes show up in the upper and lower ...
2
votes
2answers
3k views
Firefox XPCOM component - Permission denied to call method UnnamedClass
Can a firefox XPCOM component read and write page content across multiple pages?
Scenario:
A bunch of local HTML and javascript files. A "Main.html" file opens a window "pluginWindow", and creates a ...
1
vote
1answer
60 views
JQuery and tablesorter on Firefox 3.5
I'm using JQuery 1.6 and the latest tablesorter (sorttable) I can find. I have one page which does a
$("div#child_container").load(child_url);
where the page referenced by "child_url" has a ...
1
vote
1answer
98 views
Does Firefox 3 support Rails3 UJS, despite not supporting HTML5 data-* attributes?
Am I missing something or is Rails3 UJS incompatible with Firefox 3?
AFAIK, all the previous-gen browsers didn't support the HTML5 data- attributes, so does this mean all the Rails3-style UJS code ...
1
vote
4answers
120 views
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 ...
1
vote
1answer
380 views
Accessing Firefox 3 cookies in Python
I'm trying to make a python script that will access a website with the cookies in Firefox. cookielib.MozillaCookieJar would work if it supported Firefox 3. Is there a way to access Firefox 3 cookies ...
1
vote
1answer
125 views
A bidirectional scale in Firefox extension
I am writing a firefox extension where I need a bidirectional scale element (https://developer.mozilla.org/en/XUL/scale)
While the sample code of this xul element talks about a scale in one ...
1
vote
2answers
101 views
Turn all links on a page into https within firefox
Lets just say that I wanted to be extra careful with the website I'm visiting (irrespective of whether the site is offered in https) and wanted to convert every href in the web page received into its ...
1
vote
0answers
81 views
Firefox cookies on Linux
Im using Firefox 3 now. I found out that cookies are stored inside a database file called cookies.sqlite
Is there any way that I can make my Firefox saves it cookies inside a txt ?
1
vote
1answer
865 views
DirectX Firefox Plugin rendering artifacts
QUICK ANSWER: For those of you who reach this page via Google looking for
a solution to the same problem, try
this quick fix (suggested by Goz) -
Add D3DCREATE_FPU_PRESERVE to the
behavior ...
1
vote
1answer
201 views
Multiple Instances of Firefox and Visual Studio
After upgrading to FF3.5, I noticed Firebug is slower. A lot slower, it is annoying to debug web applications and have to wait 5 seconds to open a tab.
After some googling, I got FF3.0 and FF3.5 ...
1
vote
3answers
677 views
Can I drag files from the desktop to a drop area in Firefox 3.5 and initiate an upload?
I've set a ondrop event on my drop area and it receives an event when I drag an image from my desktop to the drop area.
However, according to the Recommended_Drag_Types document:
...
1
vote
1answer
608 views
Silverlight 2 Does not render content on IE7 IE8 Firefox 3
I have a very simple silverlight xaml page displays textbox and a button.
When i run my application on IE6 it works fine. But for IE7 IE8 and FF3 - it does not display any content. The page is ...
1
vote
1answer
622 views
Firefox 3 and XML/XSLT
Firefox 3 and XML/XSLT
I am relatively new to developing web apps with client-side processing in Firefox. I have a few straight-forward questions regarding the use of XML/XSLT in Firefox.
I send an ...
1
vote
3answers
766 views
How do I get clientX and clientY to work inside my “drag” event handler on Firefox?
Mozilla firefox 3.x seems to have a bug when listening to "ondrag" event. The event object doesn't report the position of the object being dragged, clientX, clientY and other screen offsets are all ...
1
vote
4answers
2k views
IE7 and Firefox 3 Rendering Difference
Here is an outline of a page I'm developing.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
...
1
vote
3answers
8k views
Cross-browser jQuery transition animation?
Are there any jQuery 1.3 animation-transitions that work in both Firefox 3 and IE7?
I have a table with multiple table rows (25 or more), with some of the rows starting hidden (these rows all share a ...
1
vote
2answers
952 views
jQuery: Why do hidden table cells get (sort of) shown again when I measure their height in FF3 and Chrome
I can successfully hide some table cells using jQuery. When I then measure the height of a hidden cell, the space that the cell would occupy if not hidden appears as blank space, pushing all the ...
1
vote
3answers
137 views
What are the rendering differences between FF2 and FF3?
I've noticed slight spacing differences in HTML rendering between these versions in Windows XP.
Is the box-model interpreted in a slight different manner?
1
vote
3answers
3k views
HTML Click Works in IE, not FireFox, Chrome
This has got to be something simple: I set up a frames page with two possible sources for the target frame based on a form with two options. I used the OnClick event to trap the user's click to show ...
1
vote
5answers
237 views
Pulling in Dynamiclly Generated (not a static file) CSS in FF?
Is there any way of pulling in a CSS stylesheet into FireFox 2 or 3 that is not a static file?
Bellow is the code we are using to pull in a stylesheet dynamically generated by a CGI script.
...
1
vote
6answers
768 views
Updated Firefox Extension - Still says “No updates were found.”
I am working on a new version of a firefox extension, but after releasing it, and incrementing the em:version in install.rdf and update.rdf, when I click "Find updates" Firefox reports that "No ...
1
vote
10answers
680 views
Is Firebug on Firefox 3 stable yet?
I really should upgrade to Firefox 3, but I'm very dependent on Firebug working properly.
I know there is a version of Firebug that is supposed to work with Firefox 3, but last time I looked, there ...