microsoft-edge

How to get private client IP address in Microsoft Edge browser using Javascript?

核能气质少年 提交于 2019-12-25 01:14:58
问题 I have tried using WebRTC to find private client IP address using Javascript by following the below link and I am successful in Chrome and Firefox but it didn't work in Microsoft Edge. https://ourcodeworld.com/articles/read/257/how-to-get-the-client-ip-address-with-javascript-only All the third solutions gives only public IP address. Tried the answer from the below link as well. How to get client's IP address using JavaScript? How to get private Client IP address in Microsoft Edge browser

webdriver edge: dispatchEvent for input element not working

感情迁移 提交于 2019-12-25 00:21:20
问题 webdriver edge: dispatchEvent for input element not working: For example, set a hidden input value, then trigger change event: ((JavascriptExecutor)driver).executeScript( "arguments[0].setAttribute('value', 'hello')", inputElem); ((JavascriptExecutor)driver).executeScript( "arguments[0].dispatchEvent(new Event('change'))", inputElem); event listeners were not triggered. SendKeys not working since the input element is hidden. 回答1: I made a test with code below is working fine with MS Edge. C#

PrintWindow and Microsoft Edge

半腔热情 提交于 2019-12-24 17:24:24
问题 we have a problem with the PrintWindow function on Windows 10 (build 10166). When we call PrintWindow (https://msdn.microsoft.com/ru-ru/library/windows/desktop/dd162869(v=vs.85).aspx) to capture a image of the Microsoft Edge (Project Spartan) browser window we get a black image. Does anyone know the reason of this and how could it be fixed/avoided? Or maybe some other way to capture image of a window, that can be in background and hided behind another windows? UPDATE : We've tried sending WM

Ghostly 'border' appears with border-radius in IE11 and Edge

霸气de小男生 提交于 2019-12-24 16:25:09
问题 In IE11 and Edge (on Windows 10), the following HTML/CSS displays a strange, transparent border where there shouldn't be. <!DOCTYPE html><html> <head> <style> body { background-color:red; font-size: 10pt; } .menu { background-color: #5f6062; overflow:hidden; /* To contain floats */ box-sizing: content-box; } .right-menu { float:right; margin:auto; padding:0 0 0 20px; list-style: none; } .spacer { background-color: #ffffff; height: 20px; } .content { background-color: #ffffff; border-radius:0

HTML5 pointermove/touchmove not working in Microsoft Edge

删除回忆录丶 提交于 2019-12-24 14:14:22
问题 I'm working on something which is more or less a drawing app. I need to support Microsoft Edge and there's the problem. As soon as you want to catch the touchmove or pointermove event, Edge tries to scroll (even if it's not possible). Here's an example. Just try to draw something there (touch/pen), mouse works perfectly even in Edge. In every other browser (except maybe IE) it works very well. I have no idea why IE is ignoring the preventDefault() function. Has someone an idea? Sample: https:

Bootstrap CSS not working in chrome or firefox

不问归期 提交于 2019-12-24 13:34:05
问题 I wrote a basic "Hello World" web page and added bootstrap CSS from CDN but it is working only in Microsoft Edge. Google Chrome and Mozilla Firefox are not displaying the correct output. Please help me resolve this issue. Correct Microsoft Edge Output Incorrect Google Chrome Output <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384

Is it possible to hide the additional icon when dragging an element in Microsoft Edge?

一个人想着一个人 提交于 2019-12-24 12:35:07
问题 Microsoft Edge shows a confusing icon when dragging and dropping elements using the html "draggable" attribute. I think it might be considered a "cursor", but I am unsure. Regardless, is it possible to hide this copy/stop icon? Microsoft Edge on Windows Example As far as Windows is concerned, it looks like this icon only shows up on Edge. Chrome has a default behavior of a cursor change (much less obtrusive). Google Chrome on Windows Example Any browser on MacOS has neither the icon or the

Preventing IE / Edge from preloading video

雨燕双飞 提交于 2019-12-24 11:37:36
问题 I have a page which dynamically displays dozens of videos (for technical reasons) on each page load. My specifications require me to have each video clickable in the HTML. IE: <video id="video-01448_1" preload="none" controls=""> <source src="https://downloadurl.com/filename1.mp4" type="video/mp4"> </video> <video id="video-01448_2" preload="none" controls=""> <source src="https://downloadurl.com/filename2.mp4" type="video/mp4"> </video> ... more videos preload="none" works in Chrome, FireFox

I would like to know why my website is not showing up on Edge? it's developed on JavaScript

假装没事ソ 提交于 2019-12-24 09:59:50
问题 Thing is someone told me that this "..." is not supported on Edge. There's something with the following code that has compatibility problems and the website is not showing up. Here's the code: //<< Mapping hash hash = { route: hash[0].split(/\//)[0], params: hash[0].split(/\//).slice(1), queryParams: hash.length > 1 ? hash[1] : "", } hash.queryParams = hash.queryParams?hash.queryParams.split(/&/).reduce((a, c, i) => { return {...a,...{[c.split(/=/)[0]]: c.split(/=/)[1]}} }, {}):{}; // I got

Text is not wrapping inside flexbox in IE EDGE

社会主义新天地 提交于 2019-12-24 09:37:21
问题 I have a UL set to display: flex and lists with flex-grow: 1 , so that all items will take equal spacing. Inside each list item, I have a link set with display: flex , justify-content and align-items set to center. When the window is too small to display all items, text inside the LINK will wrap in Chrome and FF but not in IE Edge :( I have not found a solution so far. All help is much appreciated. * { box-sizing: border-box; } ul { display: flex; margin: 0; padding: 0; } li { list-style: