microsoft-edge

How to remove a auto hyperlinked phone number from Microsoft Edge

谁说胖子不能爱 提交于 2019-12-01 21:31:46
I have time stamps on a web application in the form of 1 2015-08-06 15:16:54 which keeps getting decorated by Microsoft Edge browser as phone number links. I do not want this. Apparently, this is a 'tel' protocol and clicking on it will try to open whatever application is configured to work with the 'tel' protocol. I know there is a meta tag you can add to pages to prevent them being decorated as such on iOS devices, but how would I do this on the Microsoft Edge browser? el_stack The solution that works for iOS devices also works for Microsoft Edge. Adding the meta tag, <meta name="format

Enumerating Microsoft Edge History Programmatically

China☆狼群 提交于 2019-12-01 19:54:47
I used FindFirstUrlCacheEntry/FindNextUrlCacheEntry Win API to get Internet Explorer's history programmatically in C++. Can you tell me how to get Microsoft Edge History using C++ (Windows API)? Not possible at this point in time. Might want to use the 'suggestions routes' at some of the links below. Developer Feedback Home - https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer Developer Feedback Twitter - https://www.twitter.com/msedgedev Feature Suggestions - https://windowsphone.uservoice.com/forums/101801-feature-suggestions/category/18985-web-browsing Healy in Tampa The

In MS Edge, placeholder text doesn't disappear after entering text in input type=“number”

断了今生、忘了曾经 提交于 2019-12-01 19:31:10
To see the issue try this Snippet: <div> <span>A number input:</span> <input type="number" placeholder="Enter some TEXT"> </div> <div> <span>A text input:</span> <input type="text" placeholder="Enter some text"> </div> The behavior of input type="number" in: Chrome : Unable to input text. When numbers are input, placeholder text disappears as expected. Internet Explorer : Able to input text, but when text or numbers are input, placeholder text disappears as expected. Edge : Able to input text, and when text is input, placeholder text does not disappear! What?! Is this really just a crazy bug

Why does Microsoft Edge (formerly Project Spartan) prompt to open this website in Internet Explorer?

拥有回忆 提交于 2019-12-01 17:54:15
问题 Does anyone know what triggers MS Edge to not open a specific web page/site, but instead prompt the user to open the site in internet explorer? The message says: This website needs Internet Explorer This website uses technology that will work best in Internet Explorer. It is not possible to proceed using Project Spartan. 回答1: It is because the website is using some legacy technology. Microsoft Edge will automatically determine this and prompt the user. You'll need to figure what legacy

Why does Microsoft Edge (formerly Project Spartan) prompt to open this website in Internet Explorer?

别来无恙 提交于 2019-12-01 17:41:57
Does anyone know what triggers MS Edge to not open a specific web page/site, but instead prompt the user to open the site in internet explorer? The message says: This website needs Internet Explorer This website uses technology that will work best in Internet Explorer. It is not possible to proceed using Project Spartan. It is because the website is using some legacy technology. Microsoft Edge will automatically determine this and prompt the user. You'll need to figure what legacy components are there in Internet Explorer and convert those pieces to modern web standards. There is no rule set

Microsoft Edge window.open() not honoring width height, and opens in background

时光毁灭记忆、已成空白 提交于 2019-12-01 16:44:32
I'm on Windows 10 preview Build 10130, and the window.open method in the new Edge browser isn't behaving as per the specification. If you use the example code in https://msdn.microsoft.com/en-us/library/ms536651(v=vs.85).aspx , and click to open a new window, it will open a new window in the background, and will completely ignore the width and height. <!DOCTYPE html> <html> <head> <title>window.open()</title> <style> html, body { width: 100%; height: 100%; border: 1px solid black; } </style> </head> <body onclick="myOpen();"> <p>Click this page and window.open() is called.</p> <script>

TextTrackList onchange event not working in IE and Edge

冷暖自知 提交于 2019-12-01 16:37:10
The TextTrackList.onchange event is not working in IE and Edge . In Chrome and FireFox it works fine. Is there any alternative I can use? Ive searched through the available events but can't find any. Or how can I create a workaround? So it works amongst all browsers? https://www.javascripture.com/TextTrackList var video = document.getElementById('video'); video.textTracks.addEventListener('change', function () { console.log("TextTracks change event fired!"); }); video { max-width: 400px; max-height: 400px; } <video controls id="video"> <source src="https://www.sample-videos.com/video/mp4/720

Microsoft Edge window.open() not honoring width height, and opens in background

放肆的年华 提交于 2019-12-01 15:27:29
问题 I'm on Windows 10 preview Build 10130, and the window.open method in the new Edge browser isn't behaving as per the specification. If you use the example code in https://msdn.microsoft.com/en-us/library/ms536651(v=vs.85).aspx, and click to open a new window, it will open a new window in the background, and will completely ignore the width and height. <!DOCTYPE html> <html> <head> <title>window.open()</title> <style> html, body { width: 100%; height: 100%; border: 1px solid black; } </style> <

TextTrackList onchange event not working in IE and Edge

旧城冷巷雨未停 提交于 2019-12-01 15:18:14
问题 The TextTrackList.onchange event is not working in IE and Edge . In Chrome and FireFox it works fine. Is there any alternative I can use? Ive searched through the available events but can't find any. Or how can I create a workaround? So it works amongst all browsers? https://www.javascripture.com/TextTrackList var video = document.getElementById('video'); video.textTracks.addEventListener('change', function () { console.log("TextTracks change event fired!"); }); video { max-width: 400px; max

Edge customize cursor doesn't work

最后都变了- 提交于 2019-12-01 12:45:35
Below is my code, cursor1.cur icon is under the same root folder as index.html. The cur icon can be downloaded from this link: http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/refs/cursors/cursor1.cur It works well in IE11, but doesn't work in Edge. Can anyone help me? Update: if replace cursor1.cur with url: http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/refs/cursors/cursor1.cur . It works in Edge as well. But still I'd like to know how to use relative path in Edge. <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title of the document</title> <style