A web browser or Internet browser is a software application for retrieving, presenting, and traversing information resources on the World Wide Web.
1063
votes
9answers
217k views
What is the maximum length of a URL in different browsers?
What is the maximum length of a URL in different browsers? Does it differ between browsers?
Does the HTTP protocol dictate it?
274
votes
7answers
73k views
Are the PUT, DELETE, HEAD, etc methods available in most web browsers?
I've seen a couple questions around here like How to debug RESTful services, which mentions:
Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even ...
270
votes
44answers
205k views
Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine
Like everyone else, I need to test my code on Internet Explorer 6 and Internet Explorer 7. Now Internet Explorer 8 has some great tools for developer, which I'd like to use. I'd also like to start ...
218
votes
22answers
54k views
Determining a web user's time zone
Is there a standard way for a Web Server to determine what time zone offset a user is in?
From a HTTP header, or part of the user-agent description perhaps?
215
votes
22answers
187k views
Auto detect mobile browser (via user-agent?)
How can I detect if a user is viewing my web site from a mobile web browser so that I can then auto detect and display the appropriate version of my web site?
204
votes
2answers
24k views
Why do browsers match CSS selectors from right to left?
CSS Selectors are matched by browser engines from right to left. So they first find the children and then check their parents to see if they match the rest of the parts of the rule.
Why is this?
Is ...
181
votes
13answers
84k views
What is JavaScript's Max Int? What's the highest Integer value a Number can go to without losing precision?
Is this defined by the language? Is there a defined maximum? Is it different in different browsers?
173
votes
8answers
180k views
What requests do browsers' “F5” and “Ctrl + F5” refreshes generate?
Is there a standard for what actions F5 and Ctrl+F5 trigger in web browsers?
I once did experiment in IE6 and Firefox 2.x. The "F5" refresh would trigger a HTTP request sent to the server with an ...
165
votes
8answers
49k views
How many concurrent AJAX (XmlHttpRequest) requests are allowed in popular browsers?
In Firefox 3, the answer is 6 per domain: as soon as a 7th XmlHttpRequest (on any tab) to the same domain is fired, it is queued until one of the other 6 finish.
What are the numbers for the other ...
143
votes
11answers
167k views
Open url in new tab using javascript
I'm trying to open a url in a new tab, as opposed to a popup window. I've seen related questions where the responses would look something like:
window.open(url,'_blank');
window.open(url);
But none ...
136
votes
20answers
43k views
Disable browser 'Save Password' functionality
One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don't get me wrong, I'm all for doing ...
129
votes
9answers
60k views
How to encode the filename parameter of Content-Disposition header in HTTP?
Web applications that want to force a resource to be downloaded rather than directly rendered in a Web browser issue a Content-Disposition header in the HTTP response of the form:
...
128
votes
2answers
10k views
How do Google+ +1 widgets break out of their iframe?
Somehow, hovering over a Google+ plus-one widget can introduce a tooltip-type deal that is clearly larger than the <iframe> element in which it is contained. I’ve inspected the DOM to confirm ...
105
votes
9answers
35k views
Is there a way to detect if a browser window is not currently active?
I have JavaScript that is doing activity periodically. When the user is not looking at the site (i.e., the window or tab does not have focus), it'd be nice to not run.
Is there a way to do this using ...
98
votes
6answers
120k views
Copy text to the client's clipboard using jQuery
The workflow is simple:
You click inside a textarea.
The text is copied to the client's clipboard.
Display notice to the user.
How do you do it?
92
votes
7answers
55k views
What's the difference if “<meta http-equiv=”X-UA-Compatible“ content=”IE=edge“>” exists or not?
What's the difference if one web page starts with
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
and if page starts with
...
91
votes
14answers
49k views
What are all the valid self-closing elements in XHTML (as implemented by the major browsers)?
What are all the valid self-closing elements (e.g. <br/>) in XHTML (as implemented by the major browsers)?
I know that XHTML technically allows any element to be self-closed, but I'm looking ...
90
votes
14answers
43k views
How to detect page zoom level in all modern browsers?
How can I detect the page zoom level in all modern browsers? While this thread tells how to do it in IE7 and IE8, I can't find a good cross-browser solution.
Firefox stores the page zoom level for ...
74
votes
23answers
182k views
Recommended website resolution (width and height)? [closed]
Is there any standard on common website resolution?
We are targeting newer monitors, perhaps at least 1280px wide, but the height may varies, and each browser may have different toolbar heights too.
...
74
votes
5answers
11k views
How to have favicon / icon set when bookmarklet dragged to toolbar?
I've made myself a bookmarklet, and it functions just fine, but when added to a toolbar in Opera or Firefox, it just takes on the default bookmark icon for the browser (a globe and a star, ...
72
votes
13answers
25k views
Why doesn't JavaScript support multithreading?
Is it a deliberate design decision or a problem with our current day browsers which will be rectified in the coming versions?
66
votes
2answers
8k views
Do browsers send “\r\n” or “\n” or does it depend on the browser?
This question has bothered me for a million years... whenever I create a website with a textarea that allows multi-line (such as a "Bio" for a user's profile) I always end up writing the following ...
62
votes
9answers
31k views
Lightweight XML Viewer that can handle large files [closed]
There are plenty of "heavyweight" tools such as XmlSpy, which are good for prodding around in xml docs - but often (very often in some cases!) you just want to quickly open and browse an xml doc, and ...
62
votes
10answers
37k views
Make Browser Window Blink in Task Bar
How do I make a user's browser blink/flash/highlight in the task bar using JavaScript? For example, if I make an AJAX request every 10 seconds to see if the user has any new messages on the server, I ...
60
votes
4answers
38k views
What is the maximum size of a web browser's cookie's key?
I'm wondering what the maximum size of a web browser's cookie's key is. I know the maximum size of a cookie is 4KB, but does the key have a limitation as well?
58
votes
8answers
15k views
How to tell if a browser is in “quirks” mode?
Let's suppose you have a page with a relatively strict doctype and HTML markup that's pretty close to compliant, but perhaps misses in a few silly ways, perhaps because of user content that's out of ...
52
votes
5answers
5k views
“undefined” randomly appended in 1% of requested urls on my website since 12 june 2012
Since 12 june 2012 11:20 TU, I see very weirds errors in my varnish/apache logs.
Sometimes, when an user has requested one page, several seconds later I see a similar request but the all string after ...
51
votes
4answers
1k views
How many JavaScript programs are executed for a single web-page in the browser?
JavaScript programs consist of statements and function declarations. When a JavaScript program is executed, these two steps occur:
the code is scanned for function declarations, and every func. ...
50
votes
8answers
3k views
Is sizing fonts using “em” still relevant?
Those of you who use em when sizing fonts will know that they can be a headache when dealing with nested elements, and having to make the px -> em calculations (to ensure your design interpretation is ...
48
votes
17answers
7k views
What makes a “friendly URL”?
First of all, please excuse my ignorance on this...I'm totally willing to accept that my opinion on this is wrong. In fact, I suspect that it is given the sheer number of web developers that seem to ...
48
votes
6answers
21k views
What is the best way to profile javascript execution?
Is there a good profiler for javascript? I know that firebug has some support for profiling code. But I want to determine stats on a longer scale.
Imagine you are building a lot of javascript code ...
47
votes
29answers
3k views
IE6: To support or not to support [closed]
As most Web developers know, IE6 is a pain to support when it comes to making a website look and feel just as in the other major browsers (Firefox and IE7). I'd like to know what are the feelings of ...
47
votes
19answers
28k views
Standard way to detect mobile browsers in a web application based on the http request
We are beginning to go down the path of mobile browser support for an enterprise e-commerce webapp (Java/Servlet based). Of course there are many decisions to be made, but it seems to me the ...
47
votes
8answers
33k views
Check if Internet Connection Exists with Javascript?
How do you check if there is an internet connection using Javascript? That way I could have some conditionals saying "use the google cached version of JQuery during production, use either that or a ...
47
votes
4answers
8k views
Cross-browser testing: All major browsers on ONE machine
Aim of this guide:
Running multiple unmodified native versions of Internet Explorer,
Safari, Opera, Chrome and Firefox on a single machine, side-by-side.
Covered in part 1:
Table of contents
...
47
votes
2answers
33k views
css 'pointer-events' property alternative for IE
I have a drop down navigation menu in which some of the title should not navigate to other page when clicked(these title open a drop down menu when clicked on) while others should navigate (these dont ...
46
votes
4answers
23k views
Browser-native JSON support (window.JSON)
I have seen references to some browsers natively supporting JSON parsing/serialization of objects safely and efficiently via the window.JSON Object, but details are hard to come by. Can anyone point ...
44
votes
8answers
11k views
Is It Possible to Sandbox JavaScript Running In the Browser?
I'm wondering if it's possible to sandbox JavaScript running in the browser to prevent access to features that are normally available to JavaScript code running in an HTML page.
For example, let's ...
42
votes
7answers
40k views
How do I make Javascript beep?
I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea.
42
votes
1answer
25k views
Embedding Base64 Images
Purely out of curiosity, what browsers does Base64 image embedding work in? What I'm referring to is this.
I realize it's not usually a good solution for most things, as it increases the page size ...
42
votes
2answers
659 views
How do browsers pause/change Javascript when tab or window is not active?
Background: I'm doing some user interface tests that need to detect if people are paying attention or not. But, this question is not about the page visibility API.
Specifically, I would like to know ...
39
votes
33answers
2k views
How best to convince people to upgrade IE?
I recently asked a question that got shot down for being too strongly worded. I'm having another go today because it's something I really am concerned about and I really do want feedback and ideas ...
38
votes
5answers
96k views
Jquery Change Height based on Browser Size/Resize
I was wondering if there was a way to determine the height/width of a browser.
What i'm trying to do is set a height on a div to 500px when the browser size is 1024x768, and for anything lower i'd ...
36
votes
4answers
69k views
Force IE9 to emulate IE8. Possible?
Is this possible at all?
I tried adding this to the page but it didn't change a thing.
<meta http-equiv="X-UA-Compatible" content="IE=8">
UPDATE- I'm trying to do this because our site has ...
35
votes
3answers
32k views
34
votes
3answers
4k views
Network-Path Reference URI / Scheme relative URLs
Scheme relative URLs (network-path references) are something that I've just found out about - where you don't specify the scheme of a URL and it picks it up from the current context.
For example:
...
33
votes
7answers
35k views
How to change the default browser to debug with in Visual Studio 2008?
When you hit F5, the browser windows pops up, how do you set which browser the debugger users in Visual Studio 2008?
Update 1
I have looked for the 'Browse with' option and not found it.
Visual ...
33
votes
8answers
32k views
Disabling browser print options (headers, footers, margins) from page?
I have seen this question asked in a couple of different ways on SO and several other websites, but most of them are either too specific or out-of-date. I'm hoping someone can provide a definitive ...
32
votes
9answers
55k views
32
votes
9answers
91k views
Browser window close event
I want to capture the browser window/tab close event.
I have tried the following with jQuery:
jQuery(window).bind(
"beforeunload",
function() {
return confirm("Do you really want ...