internet-explorer-7

@fontface in IE7 (IETEster) not working properly

巧了我就是萌 提交于 2019-12-06 06:03:51
I am using the Sansumi @fontface kit by Fontsquirrel.com. It works properly in IE6 and IE8 in the program IETester, but in IE7, it doesnt. My CSS Code looks like this: @font-face { font-family: 'SansumiExtraBoldRegular'; src: url('../fonts/Sansumi-ExtraBold-webfont.eot'); src: url('../fonts/Sansumi-ExtraBold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/Sansumi-ExtraBold-webfont.woff') format('woff'), url('../fonts/Sansumi-ExtraBold-webfont.ttf') format('truetype'), url('../fonts/Sansumi-ExtraBold-webfont.svg#SansumiExtraBoldRegular') format('svg'); font-weight: normal; font

How effective is the Chrome developer tools user-agent override at emulating other browsers?

核能气质少年 提交于 2019-12-06 06:03:01
问题 The Chrome developer tools have a feature to change the user-agent to spoof servers enabling developers to test applications for other devices and browsers without having to leave the comfort of the Chrome browser on a desktop terminal. I assume that Chrome emulates these other browsers rather than them virtually. How standards compliant is Chrome with regard to JavaScript, CSS, and other technical browser differences? For instance, has anyone done a comprehensive test to determine if the

JQuery Enable / Disable Submit Button in IE7

空扰寡人 提交于 2019-12-06 05:39:51
问题 I am using the following code to disable the submit button $("input[type='submit']").attr("disabled", "disabled"); And this code to re-enable it: $("input[type='submit']").removeAttr("disabled"); It works fine on all browsers I've tried except Internet Explorer 7. IE7 will disable the button fine, but when it is re-enabled, the button still looks disabled. This button is enabled and clickable in spite of the cursor and gray color: (A colleague had the same trouble with IE8, but I could not

How can I get css pseudo element :checked to work in IE7 + IE8?

烂漫一生 提交于 2019-12-06 05:39:39
问题 I'm trying to style selected radio buttons different than non-selected radio butons in IE 7+8. I've tried selectivizer and it fixed the problem, but also created other problems with css background images being set as hidden. Does anyone know of another JS library that will fix the IE pseudo issue? 回答1: Have you tried IE9.js ? http://code.google.com/p/ie7-js/ http://www.charlescooke.me.uk/web/lab_notes/ie7_script.html http://ie7-js.googlecode.com/svn/test/index.html http://ie7-js.googlecode

Align divs horizontally, no vertical stacking, in IE7

情到浓时终转凉″ 提交于 2019-12-06 05:35:58
I have a fixed container and inside of that is an additional container which houses a number of DIVs based on user choices. I need these additional DIVs to line up horizontally and provide horizontal scrolling (but not vertical scrolling). Such as this: [x] [x] [x] Essentially, my setup looks like this: <div id="container"> <div id="second"> <div class="final"><img src="..." /></div> //Repeat as needed from user </div> </div> The CSS breaks down as such: #container { position: fixed; top: 200px; left: 0px; height: 500px; width: 100%; } #second { height: 500px; } #final { display: inline-block;

CSS vertical-align:middle not working in IE7

。_饼干妹妹 提交于 2019-12-06 05:01:08
I have the this piece of code here... <div class="pics2"> <div style="position: absolute; top: 0px; left: 0px; display: block; z-index: 4; opacity: 1; width: 225px; height: 200px;"> // this div is generated via jQuery Plugin <div style="display:table-cell; vertical-align:middle; height:200px;"> <img src="upload/<?php echo $array['image5'] ?>" width="225" /> </div> </div> </div> and here is the CSS .pics2 { padding: 0; margin-left:20px auto; margin-right:20px auto; width:225px; height:200px; overflow:hidden; float:left; } .pics2 div{ width:225px; height:200px; } .pics2 img { background-color:

Programmatically open a new tab in ie7

ⅰ亾dé卋堺 提交于 2019-12-06 04:34:31
问题 I am developing web applications with c#, Aspnet 3.5, and Ajax 2.0. Question - I run Application_1 in ie7. I would like to programmatically start running Application_2 from Application_1 in a new tab, no matter what the client settings are. Until now I have been opening Application_2 in a new window from Application_1 using ScriptManager.RegisterStartupScript(this, typeof(Page), UniqueID, "window.open('theurl',' width=800, height=500'); ", true); I would like to do something similar to open a

File download dialog IE7 disappears

巧了我就是萌 提交于 2019-12-06 04:34:06
The following code will not run correctly in IE7 with the latest service packs installed. System.Web.HttpResponse response = System.Web.HttpContext.Current.Response; response.Clear(); response.AddHeader("Content-Disposition", "attachment;filename=Contacts.xls"); response.ContentType = "application/octet-stream"; System.Text.UnicodeEncoding Encoding = new System.Text.UnicodeEncoding(); byte[] unicodeBytes = {255,254}; int length = 2 + Encoding.GetByteCount(_exportContent); // _exportContent is string. response.AddHeader("Content-Length", length.ToString()); response.OutputStream.Write

JQuery Event.target problem in ie7

前提是你 提交于 2019-12-06 04:06:07
Trying to accses the class name from the event.target object. Works in FF, Safari, and Chrome. InternetExplorer 7 alerts "undefined". Any suggestions? <script type="text/javascript"> $("document").ready(function(){ $(".page").hide(); $(".page:first").show(); $("#navBar a").bind("click", linkClicked); }); function linkClicked(event){ $("div.page:visible").fadeOut(250, function(){ var $target = $(event.target); alert($target.attr("class")); //$("#" + $(event.target).attr("class")).fadeIn(250); }); } </script> Found a solution. Set the event.target to a var before the callback for fade out. :p

pieCSS3: Not rounding in local

馋奶兔 提交于 2019-12-06 03:54:57
i'm trying to get rounded corners using pie: ul li{ -webkit-border-radius: 8px 8px 0 0; -moz-border-radius: 8px 8px 0 0; border-radius: 8px 8px 0 0; color: #FFFFFF !important; float: left; font-size: 16px; font-weight: bold; height: 24px; margin-top: 14px; padding: 15px 15px 5px; text-align: center; text-decoration: none; background: url("../nImg/comunHomeSprite.png") no-repeat scroll -5px -4172px transparent; behavior: url(../nJs/pie/PIE.htc); } CSS file is in: /nCss/mycss.css Html file is in: /home/html/index.html Pie .htc+.js in: /nJs/pie/PIE.htc (and PIE.js, but i'm not sure what is the