Tagged Questions
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 ...
10
votes
5answers
3k views
How does browser know when to prompt user to save password?
This is related to the question I asked here:
http://stackoverflow.com/questions/2382329/how-can-i-get-browser-to-prompt-to-save-password
This is the problem: I CAN'T get my browser to prompt me to ...
10
votes
8answers
4k 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 ...
8
votes
2answers
667 views
Back Button (Browser Behavior)
When the back button is pressed in a web browser, is the default action to send a get request or serve from the browsers history?
If its browser specific, what would the default actions be for ...
8
votes
3answers
3k views
Is there any difference between the box models of IE8 and Firefox3?
What are the main differences (if any) between the box models of IE8 and Firefox3?
Are they the same now?
What are the other main differences between these two browsers? Can a web developer assume ...
7
votes
4answers
141 views
any good new web-developer browser addons? (as in released in the last 6 months)
I used to be pretty ontop of the latest plugins but it's lost my attention recently (probably due to so many itentical blog articles called 'the best {num here} addons for firefox').
Last time i ...
7
votes
1answer
212 views
Javascript: What argument does the function specified in body's onload event get called with?
Similar to this question, my HTML looks like this:
<body id="body" onload="loader()">
</body>
I always assume, as this doc says, that onload is given no arguments. However, I named the ...
6
votes
2answers
174 views
How can I make browsers not prompt to save password on failed login attempts?
I'm writing an application in PHP that uses forms to retrieve the username and password input. After a successful login, web browsers will prompt to save the username and password (tested with ...
6
votes
5answers
334 views
What is the difference between “Source” and “Generated Source”?
What is the difference between "Source" and "Generated Source"?
Please explain with example.
Edit: 3 July
Which source "Search engine" uses, Generated or before generated?
6
votes
4answers
10k views
CSS Hacks, Firefox 3.5 and Google Chrome
I searched around and allegedly, body:nth-of-type(1) is used in CSS to target only Safari and Google Chrome.
Lo and behold, Mozilla reads it properly too. I searched ten times more but came up with ...
5
votes
1answer
127 views
Javascript Firefox - Unable to query cssRules if @import is present in stylesheet- bug or expected behavior?
I am unable to query cssRules if @import is present in css stylesheet.
Is it expected as per web standard?
Or it's know limitation of Firefox?
Note: I am importing css file from same domain.
var ...
5
votes
3answers
54 views
How to find out where the alert is raised from?
I'm just curious to know
Is there ANY ways in ANY browser to find out where the alert I get is raised from?
I tried it in chrome but there is no call stack available when alert shows.
Any idea?
5
votes
3answers
1k views
Browser: Continue gif animation after escape is pressed
Firefox (and other browsers i believe) stop gif animation when you click the Stop button or invoke it via the Escape key.
I have a text input that on change makes ajax requests to update other ...
5
votes
2answers
3k views
open a link in a new tab in the same window
Hi I am making a firefox extension which needs to open a link in anew tab in the same window of firefox. How should i do this?
This opens in a new window (replacing the old window):
window.location ...
5
votes
8answers
1k views
Controlling a browser using Python, on a Mac (Firefox or Safari or Chrome/ium or Opera)
I'm looking for a way to programatically control a browser on a Mac (i.e. not IE) using Python.
The actions I need include following links, checking if elements exist in a page, and submitting forms.
...
5
votes
8answers
3k views
Firefox auto-refresh on file change
Does anyone know of an extension for Firefox, or a script or some other mechanism, that can monitor one or more local files. Firefox would auto-refresh or otherwise updated its canvas when it detected ...
5
votes
2answers
2k views
Why is innerHTML = “” slow in Firefox
I am testing the speed of different methods to dynamically add html elements to the DOM. I've build a tester here (code is working version, so pretty sloppy). The results are (very) different for ...
4
votes
1answer
83 views
Firefox about:config preferences in SWT Browser
An application I am currently working on uses the SWT tool-kit's Browser widget to display a Firefox/XULRunner browser. I would like to set custom user agent data in Firefox about:config preferences; ...
4
votes
1answer
351 views
Is there a library that abstracts Web Audio API and Mozilla Audio Data API for reading raw audio (MP3,ogg)
I want to do some audio visualizations, that read raw ogg or mp3 data and use it with dsp.js. Is there a library that embraces and abstracts googles and Mozillas Audio API and ideally safari and ...
4
votes
2answers
349 views
Embed Firefox/Gecko in WPF/C#
i want to embed the current Gecko in my WPF-Project.
i know there is the possibility with the Winforms-Host and the Skybound-Gecko-Libary.
But i use not the standard wpf-theme für my application. its ...
4
votes
1answer
206 views
TinyMCE browser “fixes”
I'm getting a javascript error in Firefox and Opera when I'm using TinyMCE:
j is null
(function(d){var a=/^\s*|\s*$/g,e,c="B...a.selection.onSetContent.add(f)})}});
This error comes up after I save ...
4
votes
3answers
351 views
console.dir(window) in Firefox?
console.dir(window) in Chrome:
console.dir(window) in Firebug (in Firefox 7):
Why does Firebug list only a couple of properties of the window object? How can I list all global properties in ...
4
votes
3answers
1k views
Real headless browser
Folks,
Here is my problem: I am in charge of testing an enterprise web application that makes heavy use of AJAX. I need to build a system that allows continuous running of tests without human ...
4
votes
5answers
1k views
Why does FireFox 3.6.8 not cache static contents from asp.net developer server?
I am working on a asp.net web site, like normal user, we use asp.net developer server during coding and testing.
Today, I found the firefox not cache any static file of my site, since our application ...
4
votes
3answers
168 views
Why is Firefox is requesting a bogus URL from an IMG src in JavaScript code?
I'm getting weird 404 errors on my site for the following URL:
GET /%27%20+%20item.icon%20+%20%27 HTTP/1.1
I've got some corresponding code in my HTML file:
<script type="text/javascript">
...
4
votes
4answers
532 views
Why doesn't Firefox redownload images already on a page?
i just read this article : https://developer.mozilla.org/en/HTTP_Caching_FAQ
There's a firefox behavior (and some other browsers i guess) i'd like to understand :
if i take any webpage and try to ...
4
votes
5answers
618 views
What are my options for accessing the user's GPS device in a desktop browser?
After reading about Firefox's Geolocation functionality, which doesn't use GPS, I'm wondering what it would take for a browser (IE and/or Firefox) to be able to access a GPS device connected to a ...
3
votes
2answers
69 views
Why Are The Codebases for Modern Web Browsers so Large?
The codebases for modern web browsers like Chrome, Firefox, and Safari (WebKit) are quite large. I am curious about what specifically makes their implementations so non-trivial that they require vast ...
3
votes
1answer
72 views
Which browser is easier to develop plug-ins for? Chrome or Firefox?
I'd like to develop a small plug-in for web browsers, namely Chrome and FireFox. Which one is easier† to develop for a first projet? I am very unfamiliar with this space as I spend most of my days ...
3
votes
1answer
47 views
What explains Firefox and Safari's different treatment of user-supplied URIs containing more than one # symbol? Which is 'right'?
In Firefox 4.0.1 paste the following into the address bar
http://www.w3.org/#one#two
Note that the browser navigates to the w3.org front page and the address bar still reads
...
3
votes
7answers
739 views
How to ignore “Content-Disposition: attachment” in Firefox
How can I cause Firefox to ignore the Content-Disposition: attachment header?
I find it absolutely annoying that I can't view an image in the browser, because it asks me to download it.
I don't want ...
3
votes
3answers
70 views
How Do I Not Allow Any Firefox Customizations of my web application?
I have built an ASP.NET mvc web application and it seems that some of our users have started making add-ons or extenstions of some type in Firefox to customize the app for them specifically.
Is ...
3
votes
2answers
2k views
Programatically access webpage error details in browsers
Is there some way to access webpage warning/error details using JavaScript?
For instance, errors in IE show up in the bottom left corner like so:
I would like to able to access the details of ...
3
votes
1answer
268 views
Cross Browser Addons
I'm looking to make a browser add-on as widely and easily distributable as possible.
Is there a set of wrapper addons for all the major browsers that will let me write one piece of code and it can ...
3
votes
4answers
730 views
JavaScript regex exec takes too long to execute
I've got a simple JavaScript regex check (written by other developer) that works perfectly on thousands of different strings. However I've just discovered one particular string value that's causing ...
3
votes
5answers
4k views
Possible to flash a Browser window using Javascript?
Like many programs flash their window on the taskbar / dock to alert the user to switch to the program,
Is it possible to flash the Browser window using Javascript? (FireFox-only scripts are also ...
3
votes
5answers
7k views
Is there a way to run ActiveX components in Firefox through the use of a plugin?
I have an ActiveX plugin that we need (if possible) to run in Firefox. Is there a plugin (or other way) for Firefox that will allow this?
3
votes
8answers
962 views
Firefox browser: How to display non-existing images the way IE/Opera does?
My Firefox 3.0.4 does not display non-existing images at all, or it displays the image alt as plain text (if available).
This way I would have no idea that there is supposed to be an image there.
...
3
votes
5answers
312 views
What is the rate of firefox 2.0 and 3.0 adoption?
Part of the question:
1) How much of the market share does IE have? Opera? Firefox?
2) How many Firefox 2.x browsers have already been migrated to 3.x?
For those who question whether this is ...
2
votes
1answer
100 views
Regex browser search? [closed]
I was wondering if anyone knows of any way to use the "find" (ctrl-f) function or something similar in a browser but use regex to search. I have been looking through add-ons and the such but can't ...
2
votes
1answer
37 views
View as FF 3.6 in FF 7 - Possible?
in IE you can view pages as previous rendering engine. You use 9 and view as 8,7,6.
If this possible in Firefox? I'm using FF7 and I want to see how a website displays in say 3.6.
Is this possible ...
2
votes
2answers
65 views
Override right arrow firefox with code?
I want to use keystrokes , in my website. But the problem is, when you press the right arrowkey in firefox the page jumps a little bit to the right. I don't want that. This is my code:
...
2
votes
1answer
100 views
How to have browser open a file from a custom protocol?
I currently have a url that looks like this: protocol://folder/file.js
I can open this same file from my local disk using a url like file://C:\folder\file.js
When the application is run inside its ...
2
votes
2answers
73 views
Why does Firefox appear to truncate embedded SVGs?
Take this snippet of SVG embedded directly into the body of an XHTML served with DTD XHTML 1.0 Strict
<svg>
<circle cx="150" cy="150" r="150"/>
</svg>
View this example at ...
2
votes
1answer
141 views
What are the basic differences differences between the browsers powered by Gecko and by those powered by Webkit?
I wanted to know about the basic differences between the browsers powered by Gecko and Webkit?
- Are there any differences in the way they render?
- Any difference in the mechanism they use to render?
...
2
votes
7answers
215 views
Browser Debugging - How can I get the browser to reload the response from the server without re-requesting it?
In development our rails app runs slow. When working on javascript, previewing in the browser is a pain because of some of the slow response times. Is there a way to have the browser simply ...
2
votes
1answer
387 views
Shortcut icon problem in firefox
For me, favicon is not appearing in FireFox 3.6 but is working in IE7.
In Firefox, when the page is loading I am able to see my favicon.
But once the page is completely loaded, I am not seeing my ...
2
votes
2answers
154 views
Bind Win7 Hotkeys to Chrome/FF javascript (Greasemonkey, native fns?)
I want to control a streaming music website with global hotkeys, so I can use the site's player controls (play/pause/next/etc) while another application has focus. I can use Greasemonkey to do this on ...
2
votes
1answer
3k views
Does Firefox 4 support 3d Transformations?
I can't seem to find this anywhere on the web, but I am just wondering if Firefox 4 is going to support 3-d Transformations like the current webkit browsers do.
2
votes
2answers
370 views
Have to use back button twice in browsers (Firefox/Chrome/IE); extra # being added to URL
After experimenting with a handful of new addons for Firefox, I've managed to foul up some setting permanently.
Using certain sites--take Netflix for example--upon clicking into a details page for a ...