A free, open source and cross-platform web browser created by Mozilla.

learn more… | top users | synonyms

127
votes
3answers
105k views

Get image data in Javascript?

I have a regular HTML page with some images (just regular IMG HTML tags). I'd like to get their content, base64 encoded preferably, without the need to redownload the image (ie. it's already loaded by ...
83
votes
10answers
77k views

'innerText' works in IE, but not in Firefox

I have some JavaScript code that works in IE containing the following: myElement.innerText = "foo"; However, it seems that the 'innerText' property does not work in Firefox. Is there some Firefox ...
89
votes
5answers
12k views

text-overflow:ellipsis in Firefox 4? (and FF5)

The text-overflow:ellipsis; CSS property must be one of the few things that Microsoft has done right for the web. All the other browsers now support it... except Firefox. The Firefox developers have ...
93
votes
8answers
29k views

How to tell if a DOM element is visible in the current viewport?

Is there an efficient way to tell if a DOM element (in an HTML document) is currently visible (appears in the viewport)? (The question regards Firefox)
79
votes
22answers
68k views

css @font-face not working with firefox, but working with chrome and IE

Ok I've been at this for some time and am now bewildered. The following code works in Google Chrome beta as well as IE 7. However, Firefox seems to have a problem with this. I'm suspecting it to be a ...
64
votes
6answers
54k views

Using <meta> tags to turn off caching in all browsers?

I read that when you don't have access to the web server's headers you can turn off the cache using: <meta http-equiv="Cache-Control" content="no-store" /> But I also read that this doesn't ...
66
votes
12answers
69k views

Copy / Put text on the clipboard with FireFox, Safari and Chrome

In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
154
votes
17answers
134k views

jQuery $.ajax(), $.post sending “OPTIONS” as REQUEST_METHOD in Firefox

Having trouble with what I thought was a relatively simple jQuery plugin... The plugin should fetch data from a php script via ajax to add options to a <select>. The ajax request is pretty ...
58
votes
6answers
41k views

Why doesn't Firefox support mp3 file format in <audio>

Is there a particular reason why Firefox does not support playback of mp3 files in <audio> elements, only ogg format? Is it a licensing issue? Are there any plans made for possible future ...
60
votes
5answers
25k views

Firefox session cookies

Generally speaking, when given a cookie that has no expiration period, modern browsers will consider this cookie to be a 'session cookie', they will remove the cookie at the end of the browsing ...
53
votes
8answers
95k views

Can I call jquery click() to follow an <a> link if I haven't bound an event handler to it with bind or click already?

I have a timer in my javascript which needs to emulate clicking a link to go to another page once the time elapses. To do this I'm using jquery's click() function. I have used $().trigger() and ...
27
votes
11answers
34k views

Firefox Links to local or network pages do not work

I have a .asp application where image files (.PDF) are stored in a directory (fed by a copier/scanner). The created file names are stored in a database table, When a query is launched from the web ...
69
votes
6answers
36k views

How do I write a Firefox Addon? [closed]

What are some resources for getting started writing a Firefox Addon? Is there an API guide somewhere? Is there a getting started tutorial somewhere? Is there a developer discussion board somewhere? ...
15
votes
6answers
15k views

jQuery html() in Firefox (uses .innerHTML) ignores DOM changes

I'm really suprised I haven't run into this problem before, but it seems that calling jQueries .html() function on an element ignores changes in the DOM, i.e it returns the HTML in the original ...
23
votes
7answers
23k views

How can I set default homepage in FF and Chrome via javascript?

I have a code that works only in IE anb I was looking for something similar in FF and Chrome to set user's default homepage through a link 'click here to make this site your default homepage', but so ...
55
votes
6answers
11k views

Ajax, back button and DOM updates

If javascript modifies DOM in page A, user navigates to page B and then hits back button to get back to the page A. All modifications to DOM of page A are lost and user is presented with version that ...
43
votes
5answers
19k views

How to use jQuery in Firefox Extension

I want to use jQuery inside a firefox extension, I imported the library in the xul file like this: <script type="application/x-javascript" src="chrome://myExtension/content/jquery.js"> ...
19
votes
8answers
67k views

How can I close a window with Javascript on Mozilla Firefox 3?

I need to close the tab which displays my webpage, by the click of a button. But firefox does not allow to close the window by javascript as long as it is not opened by javascript. If I set the value ...
27
votes
13answers
16k views

How can I get browser to prompt to save password?

Hey, I'm working on a web app that has a login dialog that works like this: User clicks "login" Login form HTML is loaded with AJAX and displayed in DIV on page User enters user/pass in fields and ...
172
votes
16answers
105k views

How to remove Firefox's dotted outline on BUTTONS as well as links?

I can make Firefox not display the ugly dotted focus outlines on links with this: a:focus { outline: none; } But how can I do this for <button> tags as well? When I do this: ...
75
votes
8answers
22k views

Does Firefox support position: relative on table elements?

When I try to use position: relative / position: absolute on a <th> or <td> in Firefox it doesn't seem to work.
27
votes
2answers
18k views

jQuery: sending credentials with cross-domain posts?

According to Requests with credentials, Firefox will only send credentials along with cross-domain posts if invocation.withCredentials = "true"; is set… But it doesn't seem like jQuery's Ajax API ...
3
votes
4answers
22k views

Does execCommand SaveAs work in firefox?

Why does this not work in ff/chrome? javascript: document.execCommand('SaveAs','true','http://www.google.com'); (used as a bookmarklet)
49
votes
17answers
14k views

How do you force Firefox to not cache or re-download a Silverlight XAP file?

When working with Silverlight, I've noticed that Firefox will cache the XAP file, so if I do an update, a user may be stuck using an outdated version. Is there a way to force the browser to either ...
16
votes
5answers
29k views

Add to browser favorites/bookmarks from javascript but for all browsers (mine doesn't work in CHROME)?

can anyone help, i am using the following for adding a bookmark to IE and firefox but its not working in CHROME and i don't get my error msg saying "not supported" either.. Anybody know of a good ...
20
votes
5answers
26k views

style.display='none' doesnt work on option tags in chrome, but it does in firefox, anyone know why? or a workaround?

ok, heres some sample code that demonstrates the problem. if i click the button in firefox, the first option disappears. if i click the button in chrome, nothing happens, or rather if i inspect the ...
10
votes
4answers
5k views

JavaScript getter for all properties

Long story short: I'm in a situation where I'd like a PHP-style getter, but in JavaScript. My JavaScript is running in Firefox only, so Mozilla specific JS is OK by me. The only way I can find to ...
12
votes
2answers
64k views

Open new popup window without address bars in firefox & IE

hope someone can help. just cannot get a new window to open in Firefox without address bars. IE works fine with below code window.open('/pageaddress.html', 'winname', ...
5
votes
2answers
1k views

jQuery in Greasemonkey 1.0 conflicts with websites using jQuery

Ever since the new Greasemonkey 1.0 was released a few days ago, every site that has jQuery and where I use jQuery in my Greasemonkey script do not run my script properly. The jQuery I have in my GS ...
32
votes
5answers
5k views

Why is array.push sometimes faster than array[n] = value?

As a side result of testing some code I wrote a small function to compare the speed of using the array.push method vs direct addressing (array[n] = value). To my surprise the push method often showed ...
8
votes
8answers
15k views

SQL Reporting Services - Print Button not shown in Mozilla

I am using SQL Reporting services, it's working perfectly and shows a print button in IE, but not shown in Mozilla Firefox. Does anyone have any idea? I have checked out this solution, but it's not ...
58
votes
1answer
50k views

Custom CSS Scrollbar for Firefox

I want to custom-style a scrollbar with CSS. I use this WebKit CSS code, which works well for Safari and Chrome: ::-webkit-scrollbar { width: 15px; height: 15px; } ::-webkit-scrollbar-track-piece ...
94
votes
18answers
5k views

What are the typical reasons Javascript developed on Firefox fails on IE? [closed]

I developed some javascript enhanced pages that run fine on recent Firefox and Safari. I missed to check in Internet Explorer, and now I find the pages don't work on IE 6 and 7 (so far). The scripts ...
39
votes
8answers
72k views

Div 100% height works on Firefox but not in IE. What to do?

I have a container div that holds two internal divs; both should take 100% width and 100% height within the container. I set both internal divs to 100% height. That works fine in Firefox, however in ...
41
votes
10answers
61k views

How to remove the arrow from a <select> tag in Firefox

Hey all, I'm trying to style a <select> tag using CSS3 (I know, custom styles for form elements is a bad idea in general). I'm getting the results I desire in Webkit (Chrome / Safari), but ...
46
votes
9answers
47k views

Firefox -moz-border-radius won't crop out image?

Does anyone know a way to get Firefox to crop the corners if the border radius of an image is set? It's containing element will work fine but I get ugly corners sticking out. Any way to fix this ...
30
votes
7answers
79k views

HTML5 video (mp4 and ogv) problems in Safari and Firefox - but Chrome is all good

I have the following code: <video width="640" height="360" controls id="video-player" poster="/movies/poster.png"> <source src="/movies/640x360.m4v" type='video/mp4; codecs="avc1.42E01E, ...
11
votes
6answers
16k views

how do I programmatically click on an element in firefox?

In IE, I can just call element.click() from javascript - how do I accomplish the same task in Firefox? Ideally I'd like to have some javascript that would work equally well cross-browser, but if ...
42
votes
8answers
33k views

Button inside of anchor link works in Firefox but not in Internet Explorer?

Everything else in my site seems to be compatible with all browsers except for my links. They appear on the page, but they do not work. My code for the links are as follows- <td ...
9
votes
3answers
19k views

Hidden scrollbars in Firefox (allows scrolling but just no scrollbar)

I'm trying to make a scrollable gallery. I'd like to create a div that does scroll, just doesn't have a scrollbar. I was able to achieve this in Webkit with: #photoreel::-webkit-scrollbar { height: ...
13
votes
6answers
56k views

clientHeight/clientWidth returning different values on different browsers

Properties document.body.clientHeight and document.body.clientWidth return different values on IE7, IE8 and Firefox: IE 8: document.body.clientHeight : 704 document.body.clientWidth : 1148 IE ...
10
votes
5answers
8k views

After travelling back in Firefox history, javascript won't run

When I use the back button on Firefox to reach a previously visited page, scripts on that page won't run again. Is there any fix/workaround to have the scripts execute again when viewing the page the ...
38
votes
5answers
10k views

Firefox and Chrome slow on localhost; known fix doesn't work on Windows 7

Firefox and Chrome are known to be slow on localhost when IP6 is enabled. In previous versions of Windows, the simplest fix is to comment out this line from the hosts file, as explained in the answer ...
20
votes
2answers
7k views

About Geolocation in HTML 5

Google Maps can now pinpoint my location with street precision with the help of Firefox. I understand this is a new feature of HTML 5 compatible browsers and that the location is fetched by using ...
22
votes
2answers
10k views

Remove extra button spacing/padding in Firefox

See this code example: http://jsfiddle.net/Z2BMK/ Chrome/IE8 look like this Firefox looks like this My CSS is button { padding:0; background:#080; color:white; border:solid 2px; ...
6
votes
7answers
8k views

Get Firefox URL?

How can I get the url from a running instance of firefox using .NET 2.0 windows/console app? C# or VB codes will do. Thanks!
12
votes
7answers
14k views

Access to file download dialog in Firefox

Is there any kind of API that can allow me to manipulate a file download dialog in Firefox? (I want to access the one that appears when user does something, not initiate one myself). What I want to ...
4
votes
1answer
2k views

Fire Greasemonkey script on AJAX request

I am working on a user script and I've just found that the script is not run when the main page makes AJAX requests. Is there any way to fire the user script both on main page load and on AJAX ...
13
votes
3answers
7k views

Finding memory leaks in JavaScript using firebug?

Are there any add-ons for Firefox that I can use to find out with part of the JavaScript causes memory leaks?
11
votes
4answers
16k views

How to parse HTML from JavaScript in Firefox?

What is the best way to parse (get a DOM tree of) a HTML result of XmlHttpRequest in Firefox? EDIT: I do not have the DOM tree, I want to acquire it. XmlHttpRequest's "responseXML" works only when ...

1 2 3 4 5 28