internet-explorer Questions
11
Solved
I need to download a channel 9 series using powershell, however the scripts I have tried have errors:
This script
$url="https://channel9.msdn.com/blogs/OfficeDevPnP/feed/mp4high"
$rss=invoke-web...
Jeb asked 24/6, 2016 at 3:53
7
I'm looking for how to view the cookies set using developer tools in IE11. I see an option in network profiling to view cookies being sent back and forth, but this is not really the same thing. It ...
Bascio asked 12/11, 2013 at 22:13
8
Solved
I want to have a link in Chrome, e.g.,
Open Link
that when you click on it in the Chrome browser that it launches the link in an Internet Explorer (IE) window.
How can I do this? I believe it is po...
Guv asked 26/2, 2015 at 13:47
3
I'm using background-blend-mode on my page but IE doesn't support it.
How can I solve this?
My page on Chrome/Firefox:
My page on IE:
My CSS:
div#background-image-new {
background-image: ur...
Lotuseater asked 18/8, 2016 at 13:27
3
I can't remove inset borders from object elements in IE11. They don't appear in any other browser or version of IE as far as I can tell. See the attached screenshot. Setting border as an attribute ...
Kelle asked 6/4, 2015 at 20:2
9
Solved
I have the following example code, which should pop up an alert when the div is in focus and a key is pressed. This does what I expect in IE 7, but not in Firefox 3.5.5. What am I doing wrong?
<...
Bevbevan asked 11/11, 2009 at 20:38
7
Solved
I'm working on a project which injects JS+CSS+HTML over web pages which I do not have control over.
I am concerned about the host page styling my injected code -- I want my injected code to only o...
Novitiate asked 9/4, 2009 at 4:7
8
Solved
I have a standard select box which I'm populating using jquery by appending options, but for some reason IE9 only shows the first character of the selected option. Needless to say it works perfectl...
Vanadium asked 6/5, 2011 at 8:2
10
Solved
I am facing to problem with method new URL('address') in IE.
I have this code:
var href = location.href;
var hrefParams = new URL(href);
var api = hrefParams.searchParams.get("api");
In Firefox...
Pantheas asked 25/1, 2018 at 16:26
1
Solved
I'm porting an app using tailwindcss to work with IE11. Unfortunately, tailwindcss insists on generating colors using the modern W3C CSS Color Module Level 4 rgb() syntax, which does not appear to ...
Triangulate asked 18/1, 2022 at 11:35
8
Solved
window.popup = window.open($(this).attr('href'), 'Ad', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0');
$(window.popup).onload = function()
{
alert("Popup has loaded a page");
};
...
Ancilin asked 13/6, 2010 at 2:31
8
Solved
I have a form with <input type="submit">. In Chrome submit doesn't do anything. On a Network tab in developer tools I see nothing. No errors in developer tools either. Meanwhile, if...
Lilley asked 17/4, 2013 at 5:46
6
I've got a span that's 350 pixels wide. If there's more text than that, it just goes straight out to the right off to the side of the span. How do I force the text to wrap down into a paragraph? I'...
Ledbetter asked 24/6, 2012 at 23:9
1
I've encountered a problem, when I wrote some small program. There is an SVG textNode:
textMeasureNode.style.cssText
"font-family: "Open Sans", Arial, Helvetica, sans-serif; font-si...
Faust asked 4/2, 2015 at 2:57
3
Solved
I was building an WPF Browser application as such it requires many client specific functionality.
During debugging when i tried to run this application in IE Edge it starts behaving in buggy way i...
Pomp asked 8/8, 2015 at 15:50
3
I am successfully sending a XMLHttpRequest by using:
var createCORSRequest = function(method, url) {
var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr) {
// Most browsers.
...
Sora asked 30/11, 2014 at 21:36
10
Solved
I would like to show my users a bar that looks like this, if:
Browser is not IE; or
Browser is IE but is version 8 or earlier
(Note that the screenshot is just for illustration - IE 9 is supp...
Ricardo asked 11/9, 2013 at 11:14
8
Solved
It seems that word wrapping no longer works for textarea elements in IE 11. In IE 10 and earlier, FF, Safari, and Chrome word wrapping works as expected.
IE 11 is not implementing any word wrappin...
Lanti asked 22/11, 2013 at 16:26
4
I wrote VBScript in my project, but this is only working on IE and not chrome/firefox. I need a VBScript library for my code. How will this code work on chrome and firefox. My code is
<SCRIPT L...
Rigorism asked 13/5, 2014 at 6:40
3
Solved
I created a simple HTML page with an iframe whose src attribute references the containing page -- in other words a self-referencing iframe.
this.html
<html>
<head></head>
<bo...
Calen asked 8/1, 2013 at 20:41
4
Solved
When i paste any text in any element with 'contentEditable' flag enabled, IE automatically finds the hyperlinks or email address and replaces them with
<a href="hyperlink">hyperlink</a&g...
Toplevel asked 19/8, 2010 at 7:34
6
Solved
Relatively simple javascript here, not sure why IE hates me (treat others how you want to be treated I suppose).
var newDate = new Date("2012, 11, 2 19:30:00:000");
alert(newDate);
This works in...
Repro asked 26/10, 2012 at 17:22
8
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10....
Temple asked 13/6, 2016 at 11:23
3
Solved
For some reason, I am getting the following Javascript error in Internet Explorer 8 on line 3156 of jquery.js (version 1.4.3, non-compressed version): Object doesn't support this property or method...
Melanochroi asked 19/10, 2010 at 12:44
4
On Chrome and Firefox, if I apply a text-decoration:underline on a tag, by default the underline does not apply to the pseudo element.
But on IE it does, and I can't remove it.
I want the link to b...
Surbeck asked 19/11, 2014 at 13:46
© 2022 - 2024 — McMap. All rights reserved.