internet-explorer

Open IE with multiple tabs

允我心安 提交于 2020-01-30 08:48:27
问题 I'm trying to create an AutoHotkey script that can be added to the Startup folder, to open IE with multiple predetermined tabs. I have several websites at work that I use regularly, & I want to have IE automatically open when I first login with these pages loaded. I've searched & found a few AHKs which I've tried to alter for my needs, but I receive errors with them. Here is the code I'm trying to use: Pwb := COM_CreateObject ("InternetExplorer.Application") Pwb.Visible:=True Pwb.Navigate(

Open IE with multiple tabs

痴心易碎 提交于 2020-01-30 08:48:24
问题 I'm trying to create an AutoHotkey script that can be added to the Startup folder, to open IE with multiple predetermined tabs. I have several websites at work that I use regularly, & I want to have IE automatically open when I first login with these pages loaded. I've searched & found a few AHKs which I've tried to alter for my needs, but I receive errors with them. Here is the code I'm trying to use: Pwb := COM_CreateObject ("InternetExplorer.Application") Pwb.Visible:=True Pwb.Navigate(

Font Awesome not working in Firefox & IE

社会主义新天地 提交于 2020-01-28 21:40:31
问题 I'm having an issue with font awesome which is included into a wordpress site. In Firefox and IE the icons won't show at all, however in Chrome & Safari it works fine. I have found "solutions" which say I need an .htaccess with certain content to provide support for these browsers, however, if i use this approach, Safari and Chrome are suddenly having issues themselves and Firefox and IE are still not working. Does anyone have any further ideas? Here is the error message put out by the

Font Awesome not working in Firefox & IE

不问归期 提交于 2020-01-28 21:36:48
问题 I'm having an issue with font awesome which is included into a wordpress site. In Firefox and IE the icons won't show at all, however in Chrome & Safari it works fine. I have found "solutions" which say I need an .htaccess with certain content to provide support for these browsers, however, if i use this approach, Safari and Chrome are suddenly having issues themselves and Firefox and IE are still not working. Does anyone have any further ideas? Here is the error message put out by the

Internet Explorer Caching asp.netmvc ajax results

柔情痞子 提交于 2020-01-28 05:33:25
问题 I'm having an issue with a page in internet explorer. I have an ajax call that calls a form, in other browser, when I click the link it passes in the controller and load correctly data. but in IE, when its loaded once, it aways brings me the same old results without passing in the controller. 回答1: Try: [OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")] This attribute, placed in controller class, disables caching. Since I don't need caching in my application, I placed it in my

How to hide drop down arrow in IE8 & IE9?

前提是你 提交于 2020-01-26 12:54:19
问题 I used the CSS below to hide the drop down arrow in FF, safari, chrome and added my own image to customize. select { -webkit-appearance:none; -moz-appearance:none; -o-appearance:none; appearance:none; } For IE10, I used the pseudo-element select::-ms-expand{ display:none; } I don't know how to apply the same for IE9 & IE8. Can anyone tell me how to hide the drop down arrow in IE8 & IE9. 回答1: You've asked for a solution for IE8 and IE9. Let's start with IE8. Short answer: It's not possible.

How to hide drop down arrow in IE8 & IE9?

亡梦爱人 提交于 2020-01-26 12:50:05
问题 I used the CSS below to hide the drop down arrow in FF, safari, chrome and added my own image to customize. select { -webkit-appearance:none; -moz-appearance:none; -o-appearance:none; appearance:none; } For IE10, I used the pseudo-element select::-ms-expand{ display:none; } I don't know how to apply the same for IE9 & IE8. Can anyone tell me how to hide the drop down arrow in IE8 & IE9. 回答1: You've asked for a solution for IE8 and IE9. Let's start with IE8. Short answer: It's not possible.

Will this cause error for IE when using <!--[]>HTML GOES HERE<![]-->?

倖福魔咒の 提交于 2020-01-25 16:28:52
问题 I notice that we can use condition-in-comment for IE browsers and in some IDE such as PyCharm we have the code folding for it as the attached snapshot. So I wonder if I would cause any error for IE when using the syntax to create collapsible code-region as below snippet <!--YOUR COMMENT GOES HERE--><!--[]> <script src="someSource"></script> <![]--> 来源: https://stackoverflow.com/questions/38630378/will-this-cause-error-for-ie-when-using-html-goes-here

Internet Explorer 7,8 content type in meta tag

冷暖自知 提交于 2020-01-25 12:36:49
问题 I've recently asked a question regarding IE8 issue. After some time the problem was solved by removing one css class from style sheet file. But I could not understand why removing one css class is solving my problem? Here is the link: http://www.youtube.com/watch?v=VKyK_MDRxZI (one minute length) 回答1: I think that IE7 and 8 have a problem with the shorthand font rule, where you specify all the variations in one go - there's something it can't handle, but I can't remember what off the top of

jQuery Mobile change value in form dosen't work in IE

随声附和 提交于 2020-01-25 12:03:18
问题 This Fiddle works fine in Chrome, but not in IE. jsfiddle.net/gVQa8 Only if you remove the surrounding FORM, it will work in IE. But I need the FORM :-) I've also tried using ID instead of class - but no luck. 回答1: Solved! http://jsfiddle.net/gVQa8/22/ I just needed to write: "#glas1" and not just glas1 to call the ID! 来源: https://stackoverflow.com/questions/20394695/jquery-mobile-change-value-in-form-dosent-work-in-ie