internet-explorer

IE 10 Javascript Error not shown [closed]

廉价感情. 提交于 2020-01-24 10:59:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I am newly upgrade browser IE8 to IE10. In IE8 any java script error occurred it shown in status bar, but IE10 error not displayed in status bar. Any suggestion will be appreciated 回答1: Go to "Internet Options" Go to "Advanced" tab. Under "Browsing" header, a. Uncheck "Disable script debugging (Internet Explorer

CSS dependent on ActiveX?

主宰稳场 提交于 2020-01-24 09:57:06
问题 I've got my page working in FF, Chrome, Safari, and even IE8... as long as ActiveX is enabled. [link removed] To get the CSS3 features (rotation, opacity, text-shadow) working in IE8, I had to use ActiveX filters. My problem with this is that when you first go to the site, it pops up with a banner at the top, which users have to click, then click Allow, then click OK. I don't think most IE users are going to do this. So I'd like to make the default layout in IE8 (before ActiveX) look decent

IE input background image issue

瘦欲@ 提交于 2020-01-24 05:34:26
问题 IE the only browser that needs aditional mantainance(someone should pay for this) Here's my problem: I have created some inputs with a background image they work with FF, Chorme, IE9 (did not tested Opera, Safari) but not with IE7 and IE8 where the text is overflowing the image by ignoring the padding or scroll the image(IE7).. The code: http://jsfiddle.net/CEjXe/12/ I know i can wrap the input with a div and style the div with padding and background image. I’m looking for a different

CSS method to include IE6 hacks

為{幸葍}努か 提交于 2020-01-24 05:14:31
问题 CSS has @import, right? IE6 understands *html selector hack, right? Is it possible to combine them like //*html @import url(ie6hacks.css); or, possibly, //*html { @import url(ie6hacks.css); } ? Good browsers must skip this, will it still work in IE6? How does it look as a solution? I can clearly see it looks ugly as normal CSS. 回答1: Is it possible to combine them like * html @import url(ie6hacks.css); No. at-rules like @import are not selectors, so cannot be combined with other selectors.

jQuery input event fired on placeholder in IE

拈花ヽ惹草 提交于 2020-01-24 04:26:07
问题 I have an input field with an input event bound to it (via jQuery). This event should be fired everytime the input value changes. I added a placeholder to tell the user what this input field is for. If the user clicks on this input field the input event should NOT be fired (the value actually doesn't change; just the placeholder disappears). It works fine in Firefox or Chrome but not in IE. How can I avoid this behavior? For better understanding my problem on jsfiddler 回答1: One way to guard

jQuery $(window).scroll and Internet Explorer (8-9)

倖福魔咒の 提交于 2020-01-24 03:39:30
问题 http://jsfiddle.net/CbL7W/ example of scroll event behavior. I have this script that is working correctly in both Chrome and Firefox. var stickyNavigationOffsetTop = $('.top-nav').offset().top; var stickyNavigation = function () { var scrollTop = $(window).scrollTop(); if (scrollTop > stickyNavigationOffsetTop) { $('.top-nav').css({ 'position': 'fixed', 'top': 0, 'left': 0, 'opacity': .8 }); } else { $('.top-nav').css({ 'position': 'relative', 'opacity': 1 }); } }; stickyNavigation(); $

HTML5 template not working on Internet Explorer, how to solve it?

徘徊边缘 提交于 2020-01-24 02:19:06
问题 I made a template in HTML5 which is working with Chrome and Firefox but not working with Internet Explorer (tested on IE 8). How can I solve this problem? 回答1: I recommend you Neovov's polyfill: https://github.com/neovov/template-element-polyfill NB: There's a bug in IE 11: it moves <template> under the <body> element before rendering the DOM! So the parentNode attribute is wrong, and nesting will fail. You can see it in the [F12] Tool. 回答2: just add "display:none" to your templates. Works

DOMNodeInserted in the IE

橙三吉。 提交于 2020-01-24 00:55:07
问题 Why doesn't this code work in IE? Please help fix it: jQuery('body').live('DOMNodeInserted',function(e){ var parent = jQuery(e.target).parent(); parent.find("a").css('color','#AA62C6'); parent.find('a').removeAttr('onmousedown'); }); 回答1: This event is not supported in IE. This is added to IE9 but seems to be buggy in the implementation. A solution will be to handle the dom manipulation at the base(The method which is changing the dom) level. function update(){ //do some dom manipulation $

Select HTML item using VBA

自闭症网瘾萝莉.ら 提交于 2020-01-23 17:02:05
问题 I'm trying to scrape data from this website and I need to select value from picture (in this case "Москва, Новорязанское ш."): I am having trouble identifying the correct "class" to use and also not sure of which functions can be leveraged to target the specific values I'm trying to keep. Any guidance would be greatly appreciated. Code that I have: Public Sub Selected() Dim ie As SHDocVw.InternetExplorer Set ie = New SHDocVw.InternetExplorer With ie .Visible = True .Navigate2 "https://www

Setting up selenium to work with internet explorer

ε祈祈猫儿з 提交于 2020-01-23 16:17:00
问题 I have created a python script that I can execute and does exactly what I want under the Google Chromedriver. However, to make sure that my executable can work on all PCs, I would like to have my script work with the internet explorer driver but I am having issues. I have attached a sample test code I am trying to run below along with the error message I am receiving. from selenium import webdriver driver = webdriver.Ie() driver.get("google.com") And the error code I am receiving is: selenium