Top "Cross-browser" questions

Cross-browser development refers to the practice of building web sites, web applications, libraries, or components so that they function across different web browsers and rendering engines.

Flexbox and Internet Explorer 11 (display:flex in <html>?)

I am planning to move away from "floaty" layouts and use CSS flexbox for future projects. I was delighted to …

html css flexbox cross-browser
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 …

javascript jquery cross-browser resize
Detect Browser Language in PHP

I use the following PHP script as index for my website. This script should include a specific page depending on …

php cross-browser browser-detection
How to make HTML Text unselectable

I would like to add text to my webpage as a label and make it unselectable. In other words, When …

html css cross-browser highlighting textselection
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 …

http cross-browser browser ajax
What's the difference between disabled="disabled" and readonly="readonly" for HTML form input fields?

I have read a bit on this, but I can't seem to find anything solid about how different browsers treat …

html cross-browser
How can I draw vertical text with CSS cross-browser?

I want to rotate a single word of text by 90 degrees, with cross-browser (>= IE6, >= Firefox 2, any version of …

html css cross-browser
'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 …

javascript internet-explorer firefox cross-browser
"google is not defined" when using Google Maps V3 in Firefox remotely

Here's my conundrum: I have a page that uses Google Maps V3 and jQuery. It all worked well locally in …

javascript firefox google-maps cross-browser
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) { …

javascript jquery internet-explorer firefox cross-browser