microsoft-edge

Taming the automatic telephone number thing in the windows 10 edge browser

北城余情 提交于 2019-12-03 22:08:42
Windows 10's edge browser seems to detect phone numbers even if there's no phone app installed on the system. It formats the phone number in blue with an underline even if it's just in the plain text somewhere (ugly on some backgrounds), moreover it detects e.g. VAT numbers as if they were phone numbers. So how do we control it as webmasters to: how it renders the detected stuff (I suppose MSFT invented their very own CSS selector for this stuff?) how do we turn the detection off Preferably with something just targeting that browser and not risk messing up things for others or adding non

TWebbrowser in Windows 10: Microsoft Edge (formerly Spartan) / Internet Explorer legacy issues

两盒软妹~` 提交于 2019-12-03 20:54:57
问题 We know Internet Explorer will be discontinued in Windows 10, being replaced by the new Microsoft Edge (formerly codenamed "Project Spartan"). There are millions of apps using TWebbrowser, a component that uses the Internet Explorer API. Does anybody have information about how those applications will work in future versions of Windows? How can we be prepared to keep our applications working in future Windows versions? 回答1: According to IE Blog Internet Explorer 11 will remain fundamentally

Twitter Bootstrap Alpha 4.0 - 404/403 Response from CDNs in MS Edge

不羁的心 提交于 2019-12-03 17:39:13
问题 So I was wondering why I was getting the following responses back (404/403) when using Twitter Bootstrap Alpha 4.0 from either MaxCDN or CDNjs in the Microsoft Edge browser. Other notes: - This only happens in MS Edge, all other modern browsers don't return this - This only seems to happen with the CSS files, not the Bootstrap JS - This happens both locally and when published I am simply loading it in the <head> as usual: <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0

How do you disable the datepicker in Microsoft Edge?

馋奶兔 提交于 2019-12-03 16:56:18
问题 I have several inputs with type="date" and want to disable the default date picker in Microsoft Edge since I'm using jQuery's datepicker. How do I disable this using CSS or JavaScript? It works fine in Chrome and Firefox but not Edge. Any answers would be appreciated. A working jsFiddle HTML <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script> <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <script src="https://code.jquery.com

Alpha becomes black when coming from clipboard on Mozilla Firefox and MS Edge

浪尽此生 提交于 2019-12-03 16:36:43
I'm using a code from here to paste images from clipboard on a page. It works fine in all browsers (Chrome, Firefox, Edge and Opera). The problem is: when the image is a PNG or GIF with alpha channel (transparent areas), the alpha becomes black in Firefox and Edge. Here's the code snippet ( or jsfiddle if you prefer ): document.getElementById('pasteArea').onpaste = function (event) { // use event.originalEvent.clipboard for newer chrome versions var items = (event.clipboardData || event.originalEvent.clipboardData).items; console.log(JSON.stringify(items)); // will give you the mime types //

Why is Bootstrap trying to load LESS files in Edge?

谁说胖子不能爱 提交于 2019-12-03 14:39:02
问题 I have a web page using Twitter Bootstrap. It works well in Chrome, Firefox, and Safari. However, when I try to view it in Edge on Windows 10, I get a bunch of 403 errors saying it failed to load a slew of .less files from the Bootstrap CDN. Why are .less files being requested if the browser can't do anything with them? I am not using LESS at all, just plain CSS3, which is rendering just fine. How do I make this stop? 回答1: The good news is this won't be affecting regular users of the site.

66 Edge errors: HTTP403 FORBIDDEN

戏子无情 提交于 2019-12-03 11:02:32
HTTP403: FORBIDDEN - The server understood the request, but is refusing to fulfill it. (XHR): GET - https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/less/normalize.less HTTP403: FORBIDDEN - The server understood the request, but is refusing to fulfill it. (XHR): GET - https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/less/print.less HTTP403: FORBIDDEN - The server understood the request, but is refusing to fulfill it. (XHR): GET - https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/dist/css/bootstrap.css HTTP403: FORBIDDEN - The server understood the request, but is refusing to fulfill it

New Response from Stream in Microsoft Edge

丶灬走出姿态 提交于 2019-12-03 09:22:35
Does someone know of a way to create a new Response from a ReadableStream in Microsoft Edge? For Chrome, this is quite simple. You can just take a ReadableStream and pass it in the constructor of Response as the first argument. This way you can, for example, create a new Response with say another status code from a network response, without copying the response: fetch('https://www.baqend.com/') .then(res => new Response(res.body, { status: 222 })) .then(it => it.text()) .then(it => console.log('Text prefix ' + it.substr(0,16))) .catch(it => console.log('error: ' + it)) While this works

Twitter Bootstrap Alpha 4.0 - 404/403 Response from CDNs in MS Edge

主宰稳场 提交于 2019-12-03 07:26:52
So I was wondering why I was getting the following responses back (404/403) when using Twitter Bootstrap Alpha 4.0 from either MaxCDN or CDNjs in the Microsoft Edge browser. Other notes: - This only happens in MS Edge, all other modern browsers don't return this - This only seems to happen with the CSS files, not the Bootstrap JS - This happens both locally and when published I am simply loading it in the <head> as usual: <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> UPDATE: There is also a post discussing

“Microsoft Edge PDF inline issue” Same Issue Again

余生颓废 提交于 2019-12-03 07:08:56
I'm still having the same issue that was previously reported and answered under Microsoft Edge PDF inline issue even though I'm not using the pre-release version of Win 10, but the latest downloaded though Windows Update. After upgrading my Win 8.1 Machine to Win 10, and tested my ASP.NET application, I faced an issue with displaying inline pdf files. Here's my C# code in my ASP.NET application: Response.Clear(); Response.ClearHeaders(); Response.ClearContent(); Response.ContentType = "application/pdf"; Response.AddHeader("content-disposition","inline;filename=some.pdf"); Response.BinaryWrite