internet-explorer-8

IE8 fbml like button and eot (font embedding)

為{幸葍}努か 提交于 2019-12-13 17:11:25
问题 I have issue with one of site that I developing. Situation is like this: I'm using @font-face generated at fontsquirrel.com, and in every browser, except for IE8 it works fine. In the beginning it worked for IE8 too, but (I guess) after update it stops working normally. This is what's happening, after page is loaded, font on the page stays the same until you mouse over the document, after that it applies @font-face rule. You can see that here: http://devel.2klika.net/fiolic/demo/home.php Also

Request.UrlReferrer returning null with IE 8

好久不见. 提交于 2019-12-13 16:13:20
问题 I'm trying to access the URL in Request.UrlReferrer . It works fine in Firefox and returns me the correct value. But, when I try and access it when debugging from Internet Explorer, it returns null. My code: if (Request.UrlReferrer != null) { if (Request.UrlReferrer.ToString().IndexOf("AspxPage.aspx") > -1) { // ------ } } Why is this happening? 来源: https://stackoverflow.com/questions/6307527/request-urlreferrer-returning-null-with-ie-8

Compatibility Mode in IE8 using VBScript

≯℡__Kan透↙ 提交于 2019-12-13 16:00:26
问题 Is it possible to set and check the Compatibility Mode in IE8 using VBScript? 回答1: As per the Defining Document Compatibility article, there's the document.documentMode property that returns the compatibility mode of the current page in IE8. For example, you can type this into the IE8's Address bar to get the compatibility mode value displayed in a message box: vbscript:msgbox(document.documentMode) As for modifying the compatibility mode dynamically... You could probably iterate through all

Angular JS ng-style and Internet Explorer 8

无人久伴 提交于 2019-12-13 13:24:23
问题 I have a problem I can't seem to understand. In IE8 the directive ng-style doesn't seem to work at all. I'm using it to set the width of an element. On all other browsers it works fine. On IE8, inspecting the element with the crappy F12 tool, the style property is entirely missing. Anyone can tell me if there's a workaround? The angularjs version I'm using is the stable version at the time of writing (1.0.2) Thanks 回答1: Ok I found why {{ }} wasn't working in IE7: you have to polyfill JSON

Broken table layout in IE8 with embedded tables within another table

风格不统一 提交于 2019-12-13 12:12:03
问题 Here I've a table with embedded sub-tables. I've been looking now for a couple of hours, but didn't found the reason for the problem. The problem is, that some of the columns in the main table have fixed width via css style and only Firefox cares about that. IE8 in standard mode displays the fixed cols a bit to wide and in compatibility mode it's worst. Here's a code snippet: <table> <thead><tr> <th style="width:80px;"><div style="float: right;" class="links"><a href="/link?s=object_id-asc"

Raphaeljs renders all text as Italic in IE

早过忘川 提交于 2019-12-13 12:03:54
问题 I'm using RaphaelJS for visually representing some data. The underlying technology is SVG so obviously things don't always work that well in IE, but the library does a relatively ok job of still rendering something useful, although it often tends to look pretty poor. In any case, I can't seem to get around this basic issue. Text is rendered fine in Chrome or FireFox, but everything renders as bold and italic in IE8. To see my issue in action, go to the RaphaelJS playground and use the

TextRange offsetLeft and offsetTop broken in Internet Explorer 8 Standards Mode (IE8)

最后都变了- 提交于 2019-12-13 12:03:29
问题 I seem to have found an issue with Internet Explorer 8, when finding the position of a Text Range - For instance the currently selected text. I have not found been able to find any reports of this issue on StackOverflow or elsewhere. TextRange.offsetLeft and TextRange.offsetTop report the left and top corner of the range, and in all cases I have seen in IE8, they are roughly correct, except in the case when the range is within an IFrame . When the range is within an IFrame the values for

IE8 hangs when loading a page [duplicate]

巧了我就是萌 提交于 2019-12-13 09:18:10
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: ASP.NET treeview performance issue with IE7,8 I have a page with a treeview with 2000 nodes in it. When opening that page, the IE8 hangs. Other browsers(Chrome, FF) works fine. The browser hangs (Not Responding) and then reopens and then the page is loaded. Any idea Update 1: When i used telerik treeview control and render the same number of nodes, it didnt hang but it hangs when using asp.net treeview. So

font face not working for IE8 ?? getting @font-face encountered unknown error.?

自闭症网瘾萝莉.ら 提交于 2019-12-13 08:10:20
问题 I am using font face to include a customised font named razing. The font is not working in IE8 but works well on IE9+ and other browsers. I checked the console in IE8 browser and i found " @font-face encountered unknown error." I tried using svg and fixes like ?#iefix but it ain't working. Please can u provide a healthy solution to overcome this, Thanks !! <style> @font-face { font-family: Razing; src: url(Fonts/Razing/razing.eot); src: url(Fonts/Razing/razing.eot?#iefix) , url(Fonts/Razing

JavaScript Font-Family issue in IE

自作多情 提交于 2019-12-13 07:42:51
问题 Can someone think of a reason that this wouldn't work in any version of IE? I have a drop down select menu for choosing the font family of an element, which calls a javascript function to change the font-family. Here is the html... <select id="selecth1FontFamily" name="selectFontFamily" onchange="updateh1family();"> <option> Serif </option> <option> Arial </option> <option> Sans-Serif </option> <option> Tahoma </option> <option> Verdana </option> <option> Lucida Sans Unicode </option> <