right here is a block of my code. It works perfect in fireFox and Chrome. But not in IE. I get the error "Object doesn't support property or method 'includes'" function rightTreeSwapfunc2() { if ($(".right-tree").cs...
$.ajax({ url: "http://10.13.22.150/req_path", success: function(result){ console.log(result); } }); I'd like to send Cross-Domain XMLHttpRequest to ip addresses in the private network. However, the following error is...
I have a very simple ajax request (see below). The server is using CORS and works fine in IE 10+, Chrome, Firefox and Opera. On Microsoft Edge however, it fails with XMLHttpRequest: Network Error 0x80070005, Access is denied. I have researched...
I have a strange issue which I can only replicate on Microsoft browsers (Edge and IE11 tested). <style> body { height: 5000px; width: 5000px; } </style> <p>Click the button to scroll the document window to...
I know you should do feature detection where possible, but can you detect in Javascript if the browser is the Microsoft Edge browser? I maintain an old product and I want to display a warning that some features could be broken without having to inve...
This question already has answers here:...
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...
I am trying to use video.js to prevent fast-forward, but allow rewind, for mp4 videos on a Moodle site. The following script works in Chrome and Opera, but not in Microsoft Edge: window.onload = function() { if ($('iframe').length > 0)...
As per the Microsoft release update EDGE: Window objects associated with frames are no longer affected by moveTo, moveBy, resizeTo, or resizeBy In this case , How can we move a window to the desired location through JavaScript? My code which...
I've built a CodePen-like editor that's client side only. It works by letting you edit HTML, JS, and CSS, and then when you click run, it generates a blob and sets some iframe src to that blob. This works in Firefox(49), Chrome(53), Safari(1...
©2020 All rights reserved.