Skip to main content

Questions tagged [cross-browser]

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.

cross-browser
4 votes
1 answer
2k views

How to blur() consistently cross browsers?

There is a difference in rendering of blur effect in Firefox and Chrome. For some small value like filter: blur(30px) Chrome and Firefox produce nearly the same Gaussian blur. But for a big value like ...
10 votes
3 answers
12k views

Get datalist options in IE9 with JavaScript

This code works in all major browsers except Internet Explorer 9. I don't understand what I'm doing wrong, it's probably something simple that I'm missing. Copy this code (or use this jsFiddle) to ...
0 votes
0 answers
10 views

Unable to trigger selenium scripts on selenium grid, working on local

I am running selenium python script through Selenium Grid, but it throws error "selenium.common.exceptions.WebDriverException: Message: Unable to find resource, invalid path in url." Below ...
134 votes
9 answers
218k views

How to get screen width without (minus) scrollbar?

I have an element and need it's width without(!) vertical scrollbar. Firebug tells me body width is 1280px. Either of these work fine in Firefox: console.log($('.element').outerWidth() ); console....
1 vote
2 answers
13k views

React app not working in Safari. Working fine on Chrome and FireFox but giving black layout for safari

My react app works in every browser, But not working in Safari on MacOS(Catalina OS & Version 13.1.2 ). I get no error, no console message, nothing that would give me some idea. It only renders ...
0 votes
1 answer
5k views

I can't play HTML5 video on some ios device (ipad and iphone)

I have gone through practically every single stackoverflow question concerning this. I still having found an answer. I was told to add playsinline and it should do the trick but still nothing. I use ...
50 votes
6 answers
77k views

Browser Support for CSS Page Numbers

So I am aware of this option: Page numbers with CSS/HTML. It seems by far to be the best way to add page numbers to a print version of a page, but I can't get any variation of this to work anywhere. ...
5 votes
1 answer
10k views

Replacement for ActiveX Controls in Cross Browsers

I am having an application written developed in asp classic. and with rich use of ActiveX controls. Right away it is only IE supported. But we are moving towards cross browsing platform. As we all ...
17 votes
2 answers
10k views

Cross-browser alternative to CSS :has pseudo-class

I am looking for a cross-browser compatible CSS selector to prevent body scrolling when a modal is opened. Currently, I am using the CSS :has pseudo-class with the selector: body:has(dialog.active) { ...
245 votes
10 answers
300k views

browser sessionStorage. share between tabs?

I have some values in my site which I want to clear when the browser is closed. I chose sessionStorage to store those values. When tab is closed they are indeed cleared, and kept if the user presses ...
290 votes
33 answers
238k 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 possible ...
-1 votes
2 answers
630 views

Image always loads blurry on wordpress webpage and doesn't load on Safari

I have been working on the website (CMS: Wordpress) for my father's cafe' - www.barcaffecitta.it and I am having a problem getting the image to come out clear and not blurry and work on all browsers. ...
0 votes
0 answers
22 views

setZoom not working in Chrome but is working in other browsers

I am unable to get setZoom or any of the zoom features to work on my leaflet map in Chrome. It works fine in Firefox and Edge but I need it to work in Chrome also and cannot find anything on this. Any ...
2 votes
1 answer
91 views

WakeLock API not working in Safari (iOS) but working in Windows/android platform with same code

I want to enable wake lock API. It is working fine with Windows platform and android devices but not in Safari or iOS devices. Console has error NotAllowed, Permission was denied in Safari Browser. I ...
107 votes
6 answers
144k views

Should PUT and DELETE be used in forms?

Assuming my web application has full support of PUT and DELETE on the server side, should I make use of them? Basically my question is how many browsers support this: <form method="PUT"> or ...

15 30 50 per page
1
2 3 4 5
605