Tagged Questions
87
votes
18answers
4k views
What are the typical reasons Javascript developed on Firefox fails on IE?
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 ...
60
votes
2answers
48k 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 ...
44
votes
8answers
20k views
Error: Attempt to run compile-and-go script on a cleared scope
Since upgrading to Firefox 4.0, I've noticed that I'm occasionally getting an error in the console stating:
attempt to run compile-and-go script on a cleared scope
The only information I can ...
37
votes
8answers
27k 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 ...
28
votes
10answers
29k views
Turn off caching for JavaScript files on Firefox
During development I have to "clear cache" in Firefox all the time in order to make it use the latest version of JavaScript files.
Is there some kind of setting (about:config) to turn off caching ...
28
votes
3answers
15k views
Javascript memory profiler for Firefox
Is there a tool/plugin/function for Firefox that'll dump out a memory usage of Javascript objects that you create in a page/script? I know about Firebug's profiler but I'd like something more than ...
27
votes
5answers
12k 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"> ...
22
votes
2answers
5k views
Is “localStorage” in Firefox only working when the page is online?
So i'm toying around with HTML 5 and the localStorage and i'm noticing that my values only get stored when i run the page in Firefox on the local host (i.e. http://127.0.0.1:8000/test/index.html) when ...
22
votes
5answers
4k 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 ...
22
votes
8answers
30k views
Log to Firefox Error Console from JavaScript
Is it possible to add messages to the built-in error console of Firefox from JavaScript code running in web pages?
I know that I there's Firebug, which provides a console object and its own error ...
19
votes
2answers
4k views
Firefox 4 onBeforeUnload custom message
In Firefox 3, I was able to write a custom confirmation popup with:
window.onbeforeunload = function() {
if (someCondition) {
return 'Your stream will be turned off';
}
}
Now in Firefox ...
19
votes
4answers
30k 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 ...
19
votes
4answers
2k 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 ...
17
votes
10answers
1k views
Cryptic “Script Error.” reported in Javascript in Chrome and Firefox
I have a script that detects Javascript errors on my website and sends them to my backend for reporting. It reports the first error encountered, the supposed line number, and the time.
EDIT to ...
13
votes
1answer
3k views
Secret copy to clipboard JavaScript function in Chrome and Firefox?
In the console windows of both Chrome and Firefox on Mac I can execute
copy("party in your clipboard!");
and the text gets copied to my clipboard. I have searched SO and Google and can't seem to ...
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 ...
13
votes
5answers
10k 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 ...
13
votes
3answers
8k views
window.onerror not firing in Firefox
I'm trying to create a javascript error logging infrastructure.
I'm trying to set window.onerror to be my error handler. It works in IE 6, but when I run it in Firefox, it runs into some conflicting ...
13
votes
5answers
14k views
“not well-formed” error in Firefox when loading JSON file with XMLHttpRequest
I'm getting a "not well-formed" error in the error console of Firefox 3.0.7 when the JavaScript on my page loads a text file containing an object in JavaScript Object Notation format. If the file ...
12
votes
5answers
156 views
Firefox JavaScript arithmetics performance oddity
Please run this test on firefox.
http://jsperf.com/static-arithmetic
How would you explain the results?
This
b = a + 5*5;
b = a + 6/2;
b = a + 7+1;
executes much faster than
b = a + 25;
b = a + ...
12
votes
2answers
280 views
Large substrings ~9000x faster in Firefox than Chrome: why?
The Benchmark: http://jsperf.com/substringing
So, I'm starting up my very first HTML5 browser-based client-side project. It's going to have to parse very, very large text files into, essentially, an ...
12
votes
5answers
2k views
jQuery works in Firefox when Firebug is running, does not work when Firebug is NOT running
I have the following Javascript libraries loaded for my page.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script ...
12
votes
7answers
11k 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 ...
12
votes
6answers
9k views
Google Chrome - javascript version
What version of javascript does Google Chrome support in relation to Mozilla Firefox? In other words, does Chrome support javascript 1.6, 1.7, or 1.8 from Firefox or some combination of them?
11
votes
5answers
597 views
Which JS function-declaration syntax is correct according to the standard?
var foo = function(){ return 1; };
if (true) {
function foo(){ return 2; }
}
foo(); // 1 in Chrome // 2 in FF
//I just want to be sure, is FF 4 not "standard" in this case?
Edit:
what ...
11
votes
7answers
260 views
What are the chronological steps in building a cross browser compatible site? [closed]
I am working on my first project that requires me to worry about cross browser compatibility. Since this is my first time doing so, I dont know how to go about completing the project. I am ...
11
votes
2answers
561 views
Check if a Firefox 3.5 add-on is enabled
In order inform the user of possible conflicts, I'd like to have my add-on check if another add-on is installed and enabled. If so, I can disable either it or my own at the user's bequest:
function ...
11
votes
3answers
660 views
Why can't I use a Javascript function before it's definition inside a try block?
As discussed here, function definitions can be used before they're defined. But as soon as a section of code is wrapped in a try block, this ceases to be the case.
This displays "Hello world":
...
11
votes
8answers
40k 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 ...
11
votes
2answers
15k views
jQuery change() on <select> and firefox
I have a dropdown that triggers an ajax call when its changed:
$('.travel-to').change(function(){
$.ajax({
type: "GET",
url: "/inc/rates/rates-viewer.php",
data: ...
10
votes
4answers
376 views
Changing Window.prototype.open in a way that isn't detectable/reversible
I am looking into ways to extend Firefox pop-up blocking from an extension. One option is replacing window.open() (or rather Window.prototype.open()) in the webpage by a wrapper function. An important ...
10
votes
6answers
387 views
JavaScript `new Array(n)` and `Array.prototype.map` weirdness
I've observed this in Firefox-3.5.7/Firebug-1.5.3 and Firefox-3.6.16/Firebug-1.6.2
When I fire up Firebug:
>>> x = new Array(3)
[undefined, undefined, undefined]
>>> y ...
10
votes
1answer
2k views
CSS pointer-events='none' and/or XUL mousethrough='always' in web pages for Firefox
Morning all.
Very recently I asked this question on how to pass clicks through an element (e.g. full screen overlaying ). Received some good advice, but I still wondered which browsers supported this ...
10
votes
4answers
2k 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 ...
9
votes
2answers
241 views
Record or log all browser DOM/JQuery Event(s)
I had a problem of needing to do some stuff programmatically (in javascript) that was happening in a third party component after being triggered by some browser events (click, focus, ?). I didn't ...
9
votes
3answers
117 views
Can I put an end to quiet deaths of JavaScript functions? (Does setTimeout swallow exceptions?)
Every now and then some JavaScript function I'm working on would just quit quietly, without anything indicating in any way that something out of the ordinary has occurred.
This is driving me insane. ...
9
votes
2answers
159 views
Why Firefox and other browsers perform oppositely when calculating which number is bigger?
Two days ago, when I found jsperf.com which has a collection of many javascript performance tests, I browsed several tests.
One of tests was this, which compares Math.min(a,b) vs a<b?a:b. When I ...
9
votes
3answers
464 views
Google Analytics snippet causes page refresh in Linux Firefox
My company is using Google Analytics on our websites. We found a weird bug that only occurs on one computer. We didn't see the issue when we tried to reproduce it on another machine using the exact ...
9
votes
3answers
378 views
Prevent selection being greyed out in iframe in Firefox without using contenteditable
In Firefox 3 and later (and probably older versions), selecting content within an iframe always seems to use the grey selection background colour used for a document that doesn't currently have focus, ...
9
votes
3answers
1k 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?
9
votes
4answers
555 views
How do I “step over” jQuery code while debugging?
While stepping through a script that uses jQuery, I just want to test the code I wrote. I don't want to step into the jQuery file -- I'm not debugging jQuery, just my own file.
Are there any ways to ...
9
votes
2answers
142 views
Javascript: What does the function given to setTimeout get called with?
I have code like this:
setTimeout(foo, 600);
I always thought that foo didn't take any arguments, e.g.:
function foo() { /* bars */ }
However, doing the following:
function foo(a) { alert(a); ...
9
votes
11answers
4k views
How can I prevent the backspace key from navigating back?
On IE I can do this with the (terribly non-standard, but working) jQuery
if ($.browser.msie)
$(document).keydown(function(e) { if (e.keyCode == 8) window.event.keyCode = 0;});
But is it ...
9
votes
2answers
1k views
How can a Firefox extension get its own version number programmatically?
How do I programatically get my own Firefox extension's version number with Javascript?
My extension has an install.rdf file containing the version number similar to below. I want to extract the ...
9
votes
4answers
893 views
Have Firebug Break when a global variable X is defined
We have a very large JavaScript application where after many months of coding there have inevitably sprung a couple scope slip ups where a variable is defined in the following fashion:
function() { ...
9
votes
4answers
17k 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 ...
9
votes
3answers
6k views
Are Java Applets unable to communicate with javascript within Firefox on Mac OS?
I have a java applet running in a browser that is calling some javascript functions and expecting a result from theses functions. This is working with the following configurations :
Internet ...
9
votes
4answers
5k views
Opening a URL in current tab/window from a Firefox Extension
I am creating a Firefox Extension...what would be the javascript to open a URL in the current tab from a menuitem?
e.g. in my overlay.xul file i have the following line:
<menuitem label="Visit ...
9
votes
3answers
7k views
How to implement “DOM Ready” event in a GreaseMonkey script?
I'm trying to modify my GreaseMonkey script from firing on window.onload to window.DOMContentLoaded, but this event never fires.
I'm using FireFox 2.0.0.16 / GreaseMonkey 0.8.20080609
This is the ...
8
votes
3answers
282 views
How to fix the sub-pixel error the way Firefox does?
If you open this page https://bug63336.bugzilla.mozilla.org/attachment.cgi?id=114574 and try resizing your browser window you should see lines across the black box in any browser other than Firefox. ...