Cross-browser refers to the ability for a website, web application, HTML construct or client-side script to support all the web browsers.
213
votes
13answers
81k views
css rule to disable text selection highlighting
For anchors that act like buttons (for example the Question, Tags, User, etc at the top of the SO page) or tabs, is there a CSS standard way to disable the highlighting effect if the user accidentally ...
147
votes
31answers
20k views
What is the best way to create rounded corners using CSS?
What is the best way to create rounded corners using CSS?
121
votes
8answers
31k 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 ...
87
votes
8answers
99k 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 ...
73
votes
6answers
23k views
Truncating long strings with CSS: feasible yet?
Is there any good way of truncating text with plain HTML and CSS, so that dynamic content can fit in a fixed-width-and-height layout?
I've been truncating server-side by logical width (i.e. a ...
66
votes
11answers
35k 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?
56
votes
7answers
31k views
Cross-platform, cross-browser way to play sound from Javascript?
I am writing a dhtml application that creates an interactive simulation of a system. The data for the simulation is generated from another tool, and there is already a very large amount of legacy ...
46
votes
14answers
27k views
What are all the valid self-closing tags in XHTML (as implemented by the major browsers)?
What are all the valid self-closing tags (e.g. <br/>) in XHTML (as implemented by the major browsers)?
I know that XHTML technically allows any tag to be self-closed, but I'm looking for a list ...
42
votes
6answers
21k views
How is the default submit button on an HTML form determined?
If a form is submitted but not by any specific button, such as
by pressing Enter
using HTMLFormElement.submit() in JS
how is a browser supposed to determine which of multiple submit buttons, if ...
42
votes
4answers
14k views
Javascript - “let” keyword vs “var” keyword
In javascript 1.7, the let keyword was added. I've heard it described as a "local" variable, but I'm still not quite sure how it behaves differently than the var keyword.
What are the differences ...
41
votes
19answers
2k views
What's the best way to do cross browser testing?
What's the best way for me to check if my website is compatible in IE7,8, Safari, FF, and Chrome without having to install each and everyone? I mainly want to check the CSS, HTML, and JavaScript.
...
41
votes
24answers
2k views
Degradation of skills as a result of JavaScript libraries [closed]
I'm struggling with the value of knowledge between JavaScript base functionality and JavaScript libraries.
While I understand the underlying concepts used by many of today's popular libraries (JQuery ...
40
votes
4answers
10k views
How to fix Array indexOf() in JavaScript for IE browsers
If you have worked with JavaScript at any length you are aware that IE does not implement the ECMAScript function for Array.prototype.indexOf() [including IE8]. Not a huge problem because you can ...
40
votes
18answers
4k views
What Cross-Browser issues have you faced?
While developing for multiple sets of browsers, what issues have you faced while development due to differences in browser implementation?
To start with I am listing some of those which i faced:
A ...
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 ...
35
votes
16answers
29k views
Can I detect IE6 with PHP?
Is there a way to use PHP to detect if the page is being loaded using IE6?
34
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 ...
34
votes
4answers
41k views
Cross-browser window resize event - JavaScript / jQuery
What is the correct (modern) method for tapping into the window resize event that works in Firefox, WebKit, and Internet Explorer?
And can you turn both scrollbars on/off?
29
votes
7answers
8k views
Your choice of cross-browser javascript GUI
There are a number of great and not so-great Javascript GUI frameworks out there. I've looked at some (only superficially). And I can't make my mind about any of them
Scroll to the end of this ...
21
votes
5answers
454 views
Websites that archive cross-browser, cross-platform css/js bugs?
I'm about to develop my own browser inconsistency/bug compendium site but I'm wondering if I really need to - can we get a wiki of sites that do this already? I'm aware of a lot of them but I hope I'm ...
21
votes
4answers
13k views
Rotating table header text with CSS transforms
This looks like it should be possible with the following:
.verticalText
{
/* IE-only DX filter */
writing-mode: tb-rl;
filter: flipv fliph;
/* Safari/Chrome function */
...
20
votes
9answers
11k views
How do I do OuterHTML in firefox?
Part of my code I get the OuterHTML propery
"<LI onclick="TabClicked(this, 'SearchName', 'TabGroup1');">Name "
so I can do stuff involing parsing it.
There is no OuterHTML property in ...
19
votes
7answers
2k views
What are the best practices for cross-browser web sites?
(I'd like this to be the definitive community wiki. I seeded it from my own answer to this question.)
Specify Everything
A lot of cross-browser issues amount to this: you didn't specify something, ...
19
votes
9answers
3k views
Displaying vector graphics in a browser
I need to display some interactive (attaching with DOM listeners etc. and event handling) vector graphics in web site I am working on. There is a W3C recommendation for SVG though this format is still ...
18
votes
2answers
423 views
Getting URL of executing JavaScript file (IE6-7 problem mostly)
Hey all, I've been trying to throw together a generic function that retrieves the absolute URL of an executing JavaScript file on a web page:
http://gist.github.com/433486
Basically you get to call ...
18
votes
2answers
15k views
Javascript: document.execCommand cross-browser?
I just stumble on a piece of code which I never saw before (granted I can't call myself a JS expert):
document.execCommand('Copy');
which seems to copy the clipboard contents to the element in ...
17
votes
3answers
1k views
Are there any JavaScript library for cross browser desktop notification?
I know W3C just publish their draft version of Web Notification to notify user. So, there is no browser that implement this method in their current or latest build browser.
Web Notifications Overview
...
17
votes
4answers
5k views
Fixing javascript Array functions in Internet Explorer (indexOf, forEach, etc)
As detailed elsewhere, and otherwise apparently well-known, Internet Explorer (definitely 7, and in some instances, 8) do not implement key functions, in particular on Array (such as forEach, indexOf, ...
17
votes
4answers
14k views
JavaScript get clipboard data on paste event (Cross browser)
Is there any way for detecting the paste event AND getting the pasted data? Let's say at least for MSIE and Gecko.
MSIE has clipboardData.getData() but I did not find something similar for ...
17
votes
13answers
7k views
If IE8 is installed, what is the best way to test IE6 and IE7 compatibility?
if IE 8 is installed "by accident" (by the Windows Update program), now the machine has IE 8. Does that mean it is safest to run 2 Virtual PCs, one with IE 6, and one with IE 7 to test our web app?
17
votes
3answers
32k views
Setting uniform <input type=“file”> width in all browsers
What combination of CSS or attributes are needed?
16
votes
5answers
2k views
javascript context menu click event/detection - filter paste content
Scenario: I'm trying to intercept paste events inside a textarea/input text, and filter the content being pasted.
Webkit/IE are handled rather well, as I can attach code to the onpaste event, and ...
16
votes
2answers
436 views
Why is window not identical to window.self in Internet Explorer?
There's a convoluted backstory involving how I came across this, but why is the self property not exactly equal to the window itself?
In Safari and Firefox and friends, the results are as I'd expect:
...
16
votes
14answers
59k views
IE6/IE7 css border on select element
Does anyone have a solution for styling the borders of "select" elements in Internet Explorer using CSS?
16
votes
8answers
44k views
IE7 and the CSS table-cell property
So I just love it when my application is working great in Firefox, but then I open it in IE and... Nope, please try again.
The issue I'm having is that I'm setting a CSS display property to either ...
16
votes
9answers
15k views
Cross Browser Flash Detection in Javascript
Does anyone have an example of script that can work reliably well across IE/Firefox to detect if the browser is capable of displaying embedded flash content. I say reliably because I know its not ...
15
votes
5answers
331 views
Do I still need to test rendering in both Chrome and Safari if they both use Webkit?
Is it necessary to test the rendering of my website in both Chrome and Safari despite the fact that both browsers implement the Webkit rendering engine underneath?
Is this a cop out by developers or ...
15
votes
7answers
1k views
HTML 5 - Early Adoption Where Possible - Good or Bad?
This question was inspired a bit by this question, in which the most upvoted answer recommended using a feature from HTML 5. It certainly seemed to be a good method to me, but it made me curious ...
14
votes
4answers
188 views
Determine Maximum Possible DIV Height
Is there a recommended way to determine the maximum height that a DIV can be set and remain visible per browser? This doesn't appear to be documented anywhere and is highly implementation specific.
...
14
votes
13answers
20k views
What the typical viewport size on a 1024x768 screen?
I am designing a web application, and I wish to know the largest size (x and y) that I can design for.
As of January 2008, about half of users are using 1024x278 screens, and probably less than 10% ...
13
votes
1answer
367 views
Default CSS properties of HTML elements
What is the best site to find the default CSS properties of HTML elements?
Many of the HTML elements come with some default CSS properties which can sometimes result in unknown/unwanted behaviour. ...
13
votes
8answers
859 views
Cross-browser development
I'm developing a web application for a new service, starting from Firefox 3.5.
The interface design is tableless, only using divs + CSS & performance-blessed practices.
Now, while being ...
13
votes
4answers
5k views
Get the browser viewport dimensions with Javascript
I want to provide my visitors the ability to see images in high quality, is there any way I can detect the window size (or better yet, the viewport size - see green area) of the browser with ...
12
votes
4answers
2k views
Cross browser rounded corners (no image)
When converting PSD's into HTML or even HTML5 and CSS, how much more difficult is it to round the corners and make those corners consistent across all browsers, especially Internet Explorer?
...
12
votes
10answers
2k views
css problem: Absolutely positioned parent and float:right child stretches
In IE6, IE7 and FF2 the .outer div below is stretching out to the right edge of the document. Here is a complete test case:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
12
votes
3answers
5k views
Watch for object properties changes in JavaScript
I just read Mozilla's documentation for the watch() method. It looks very useful.
However, I can't find something similar for Safari. Neither Internet Explorer.
How do you manage portability across ...
12
votes
9answers
2k views
What is the Rolls-Royce way to deploy a Java applet?
I know how to deploy an applet using applet, object, embed tags and JavaScript, but I'm after the best approach (in terms of end user experience).
Sun suggests using the applet tag, and a mixed embed ...
12
votes
4answers
5k views
Cross-browser method for detecting the scrollTop of the browser window
What is the best cross-browser way to detect the scrollTop of the browser window? I prefer not to use any pre-built code libraries because this is a very simple script, and I don't need all of that ...
12
votes
10answers
810 views
Testing a website for cross-browser/multiple-version support
This is a multipart question:
Is there a tool that let's me view my site in all the major browsers along with different versions of each?
If I have to actually download and install the different ...
12
votes
17answers
857 views
What Cross-Browser Javascript Libraries Are Out There?
I'm gearing up to do some AJAX style client side Javascript in the near future and I've heard rave reviews of JQuery when it comes to this realm. What I'm wondering is:
What are all the cross ...