internet-explorer

HTML <details> tag does not work in IE/Edge

自闭症网瘾萝莉.ら 提交于 2020-02-21 10:37:57
问题 I am trying to add additional toggleable section that user can show and hide. My requirements: supported on major browsers (Opera, Chrome, Edge, IE11, Firefox, Safari on Mac) no javascript And was thinking of using the <details> tag, however the code <details> <summary>Toggle</summary> <p>Hideable</p> </details> does not work on the Edge / IE browsers. Can I anyhow "make" it work, or is there anything else I can use for that task? Hacks are OK, as long as no javascript is present. 回答1: This

HTML <details> tag does not work in IE/Edge

╄→гoц情女王★ 提交于 2020-02-21 10:37:29
问题 I am trying to add additional toggleable section that user can show and hide. My requirements: supported on major browsers (Opera, Chrome, Edge, IE11, Firefox, Safari on Mac) no javascript And was thinking of using the <details> tag, however the code <details> <summary>Toggle</summary> <p>Hideable</p> </details> does not work on the Edge / IE browsers. Can I anyhow "make" it work, or is there anything else I can use for that task? Hacks are OK, as long as no javascript is present. 回答1: This

What is the maximum length of a custom url protocol using synchronous pluggable protocols in internet explorer?

╄→尐↘猪︶ㄣ 提交于 2020-02-20 08:20:48
问题 I'm running into a hard limit in Internet Explorer with application protocol's that exceed 508 characters in length. This limit is not enforced in other browsers, chrome etc... The documentation on MSDN(1) does not seem to mention the maximum permissible length in the scheme-specific portion of the URI or total length including scheme. 508 characters is well below general limits for urls in IE reported to be 2083 characters (2). Does anyone know if this is expected behavior, i'm using IE8, or

IE Browser - Powershell script to add site to trusted sites list, disable protected mode & make all zones security level low

允我心安 提交于 2020-02-20 05:59:10
问题 For our website to run we need to: add site to trusted sites list [Solved] disable IE protected mode [Solved] bring down security level for all zones. [facing Issue] I am automating this site. As a prerequisite i have to take care of security features. I have create below code. But i am not able to set security level to zero. I can't find 1A10 in zones. I am adding solved issues code as well. Hoping it might help someone in need Helpful sites - https://x86x64.wordpress.com/2014/05/20

IE and Memory accumulation in Javascript

白昼怎懂夜的黑 提交于 2020-02-17 05:32:04
问题 Here is the test URL http://edventures.com/temp/divtest.php Procedure: Close all IE instances. Open the URL in IE7 Open the task manager, look for memory consumed by IE Now click on Create button, Watch the memory it will jump up by about 2K Now click on Destroy button and the DIV will be destroyed but the memory remains the same. You can try it repeatedly and memory just adds up. Is there any way to fix this? Any way to call Garbage collector forcefully without reloading the window? I am

Position:fixed to work on IE 6/7/8 and mozilla

我的梦境 提交于 2020-02-16 07:25:59
问题 I want to make a div's position fixed on the bottom right of a page..( a chat box) ..how do i do that through a css file which will work on all IE6/7/8 and mozilla ....for now i have #chatBox{ position: fixed; bottom: 0%; right: 1%;} This doesn't work on IE..and my constraint is that I am just allowed to edit this CSS file ( so can't set the html to strict mode too). Workarounds I found on the web just talk about position w.r.t to the top of the page not bottom. thanks Mohan 回答1: You can fix

Position:fixed to work on IE 6/7/8 and mozilla

狂风中的少年 提交于 2020-02-16 07:24:13
问题 I want to make a div's position fixed on the bottom right of a page..( a chat box) ..how do i do that through a css file which will work on all IE6/7/8 and mozilla ....for now i have #chatBox{ position: fixed; bottom: 0%; right: 1%;} This doesn't work on IE..and my constraint is that I am just allowed to edit this CSS file ( so can't set the html to strict mode too). Workarounds I found on the web just talk about position w.r.t to the top of the page not bottom. thanks Mohan 回答1: You can fix

incorrect Username or password when using auto login macro in excel

你说的曾经没有我的故事 提交于 2020-02-16 06:08:47
问题 I know the login credentials are 100% accurate but I receive the message "wrong username or password"? Sorry I cant give you the login details but I was hoping some one could take a look at the login page here https://grp.controlant.com/user/login. I have used inspect element to try and understand what is happening but its all a bit of a puzzle to me. please could someone give me some pointers so I can login in successfully! I have studied the login page HTML source code and I think it may

@font-face import not working in offline website/different host using online fonts via CSS in IE only

情到浓时终转凉″ 提交于 2020-02-08 03:10:57
问题 IE is very strange. I've had a look at MIME types, added a .htaccess file with <FilesMatch "\.(ttf|otf|eot|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch> AddType application/vnd.ms-fontobject .eot AddType application/octet-stream .otf .ttf And the IE9 developer tools seem to have noticed that is in place but again no change. The website is currently offline (just viewed on the hard drive) - authough when it's uploaded to a different

How to detect the main page url from within a pluggable protocol handler

我怕爱的太早我们不能终老 提交于 2020-02-07 12:27:47
问题 I am implementing a pluggable protocol handler in my own browser application for the purpose of blocking ads. It's a namespace handler to be exact. I can easily get the url of the element being dowloaded from within the namespace handler. But I would like to get the URL of the page which contains the element as well. The browser app I am building hosts many web browser controls in a single process. At this moment, I don't know any way to tell which web browser control issues the download