internet-explorer

How to fix ExtJS scoped CSS for IE?

谁说胖子不能爱 提交于 2020-01-16 19:45:29
问题 I'm using ExtJS 4.1.1 and some components don't display as expected in IE7. I checked ext-all-scoped.css and I noticed that these two classes .x-reset .x-ie do not appear in the right order, so the styles are not applied. I thought I could simply replace this string with the right one ( .x-ie .x-reset ) but there are many different cases such as .x-reset .x-strict .x-ie7 , .x-reset .x-quirks .x-ie8 and so on all along the file. Thereby, I'd rather like recompile the entire CSS file. Does

IE VBA open web page equal to clicking on first web page link

杀马特。学长 韩版系。学妹 提交于 2020-01-16 19:45:27
问题 I'm trying to automate filling in a transaction on a series of web pages using Internet Explorer and MS-Access VBA. I've done quite a bit of this, but am stumped on this one pair of pages. I using code like this: Set htmlDoc = ie.Document With htmlDoc Set e = .getElementById("j_idt31_data") If e Is Nothing Then GoTo FileAppeal_Error Set elems = e.getElementsByClassName("ui-widget-content ui-datatable-odd ui-datatable-selectable") For Each e In elems If InStr(1, e.innerText, "Evans ") > 0 Then

IE VBA open web page equal to clicking on first web page link

我的梦境 提交于 2020-01-16 19:45:10
问题 I'm trying to automate filling in a transaction on a series of web pages using Internet Explorer and MS-Access VBA. I've done quite a bit of this, but am stumped on this one pair of pages. I using code like this: Set htmlDoc = ie.Document With htmlDoc Set e = .getElementById("j_idt31_data") If e Is Nothing Then GoTo FileAppeal_Error Set elems = e.getElementsByClassName("ui-widget-content ui-datatable-odd ui-datatable-selectable") For Each e In elems If InStr(1, e.innerText, "Evans ") > 0 Then

stretching the background image in IE

时间秒杀一切 提交于 2020-01-16 18:39:50
问题 I have a background image. I am stretching it so that it fits the entire page.But it is working in browsers other than IE.But if I use background-size, it is working in IE9. But I want it to work in IE8. How to do this? Thanks in advance. In other browsers and in IE9: In IE8: You can find the difference at the bottom of the page. Here is my code: body, html{ height:100%; padding:0; margin:0; } body.BodyBackground { margin: 0px; background: url(../images/common/header/Background_color.png);

stretching the background image in IE

◇◆丶佛笑我妖孽 提交于 2020-01-16 18:39:21
问题 I have a background image. I am stretching it so that it fits the entire page.But it is working in browsers other than IE.But if I use background-size, it is working in IE9. But I want it to work in IE8. How to do this? Thanks in advance. In other browsers and in IE9: In IE8: You can find the difference at the bottom of the page. Here is my code: body, html{ height:100%; padding:0; margin:0; } body.BodyBackground { margin: 0px; background: url(../images/common/header/Background_color.png);

Is it possible to start a Windows process from Javascript running in a web page in Firefox or IE

纵饮孤独 提交于 2020-01-16 18:02:32
问题 I need to understand if Firefox (or IE) supports starting an external operating system (Windows) process from JavaScript code running in a <script> tag in the web page. As a trivial example, I want the user to be able to click a button ( <input type="button" .../> ) in the web page which would cause some JavaScript to be executed that would start Notepad (i.e. c:\Windows\System32\notepad.exe) (Note: in my case, I need to start a custom .exe created by one of the developers I work with, not

Is it possible to start a Windows process from Javascript running in a web page in Firefox or IE

天大地大妈咪最大 提交于 2020-01-16 18:02:07
问题 I need to understand if Firefox (or IE) supports starting an external operating system (Windows) process from JavaScript code running in a <script> tag in the web page. As a trivial example, I want the user to be able to click a button ( <input type="button" .../> ) in the web page which would cause some JavaScript to be executed that would start Notepad (i.e. c:\Windows\System32\notepad.exe) (Note: in my case, I need to start a custom .exe created by one of the developers I work with, not

VBScript to detect Facebook IE window, press Like and close the window

微笑、不失礼 提交于 2020-01-16 12:08:08
问题 I tryed to make a script to detect the IE window that is opened on Facebook and hit the Like button. Let's say I have 10 IE opened. Only one of them is on a page on Facebook. I want my script to detect that IE window, click this button: IE.Document.getElementById("pagesHeaderLikeButton") (The above button is the Like button) and close that IE window. I tryed to get that IE window by: For Each wnd In CreateObject("Shell.Application").Windows If InStr(1, wnd.FullName, "iexplore.exe",

Colums resize when using JQuery UI's toggle in IE

本小妞迷上赌 提交于 2020-01-16 11:08:37
问题 Example code: <html> <head> <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <script src="jquery-ui-1.7.1.custom.min.js" type="text/javascript"></script> </head> <body> <table border="1" style="width:100%"> <tr> <th>1</th> <th>2</th> <th>3</th> <th>4</th> </tr> <tr> <td>a</td> <td>b</td> <td>c</td> <td>d</td> </tr> <tr> <td colspan="4" > <div id="target">TOGGLE TEXT!!</div> </td> </tr> </table> <input type="button" value="show/hide" onclick="toggleHidden();" /> <script type=

Script error only in ie10 / works perfect in all other browsers

痴心易碎 提交于 2020-01-16 10:13:08
问题 I use the following script to replace dropdowns into regular links. This works perfectly in firefox, chrome, safari and ie11 but does not work in ie10 and below. The script: function replaceDropDowns() { jQuery('.product_attribute_option_link').remove(); jQuery('#selected_combination').text(''); jQuery(".super-attribute-select").each(function() { var drop_down = jQuery(this); drop_down.hide(); drop_down.find("option[value!='']").each(function() { var option = jQuery(this); jQuery("<a>", {