internet-explorer-8

IE8 on Localhost really slow - Firefox, Opera, Chrome and Safari all fast on the same - why?

荒凉一梦 提交于 2020-01-03 15:13:30
问题 I have some pages on my local machine, accessed via localhost, that are horribly slow to open/load using IE8, but very fast using Firefox, Opera, Chrome and Safari. They used to load really quickly using IE7. I produced a cut down page to test - to see what was causing the problem - and seriously, the most simple page possible causes it! I.e: <html> <head></head> <body> Hello! </body> </html> Takes about 15 seconds to open on localhost in IE8, and is instant on all other browsers! Why? What

IE8 on Localhost really slow - Firefox, Opera, Chrome and Safari all fast on the same - why?

怎甘沉沦 提交于 2020-01-03 15:12:52
问题 I have some pages on my local machine, accessed via localhost, that are horribly slow to open/load using IE8, but very fast using Firefox, Opera, Chrome and Safari. They used to load really quickly using IE7. I produced a cut down page to test - to see what was causing the problem - and seriously, the most simple page possible causes it! I.e: <html> <head></head> <body> Hello! </body> </html> Takes about 15 seconds to open on localhost in IE8, and is instant on all other browsers! Why? What

IE8 does not keep Session Variables

你说的曾经没有我的故事 提交于 2020-01-03 14:16:23
问题 If I host an ASP.NET page with: <%@ Page Language="C#" %> <!DOCTYPE html> <script runat="server"> protected void btn_Click(object sender, EventArgs e) { lbl.Text = HttpContext.Current.Session["a"] == null ? "null" : HttpContext.Current.Session["a"].ToString(); } protected void btn_Click2(object sender, EventArgs e) { lbl.Text = HttpContext.Current.Cache["a"] == null ? "null" : HttpContext.Current.Cache["a"].ToString(); } protected void Page_Load(object sender, EventArgs e) { if (!Page

CSS styles not applied when using html5 selectors. Has something changed about the browser in terms of rendering CSS?

谁说我不能喝 提交于 2020-01-03 04:38:19
问题 I'm experiencing frustrating situations with IE8 lately. It's the weirdest thing. I had previously working code stop working. It seems to be happening when I'm using HTML5 tags such as header , footer , article and nav to name a few, being used with their counterpart CSS selectors in my external CSS stylesheet. The problem is: all of a sudden the CSS styles are no longer being applied to my markup. It's like I have no stylesheet at all. I've made sure that I'm not getting any 404 errors as

Twitter Bootstrap buttons are unresponsive in IE8

别等时光非礼了梦想. 提交于 2020-01-02 13:58:31
问题 IE is a mystery to me. My web app is working on Safari, Firefox, Chrome, even iPhones and iPads, but when it comes to IE, I simply can't comprehend how hard it is to comply to the given standards. Anyway enough ranting. My Twitter bootstrap buttons are completely ignored in IE8. Absolutely nothing happens when I click on any button. I couldnt find anything on google, has anyone come across this? Many Thanks, 回答1: @Kave You uploaded only plain html to jsfiddle - which includes links to js

Raphaeljs support in IE8

梦想与她 提交于 2020-01-02 12:24:12
问题 I am creating a dynamic visualization using Raphael-js. I started off with using Raphael-1.5.0 and things seemed to work okay. http://www.iiserpune.ac.in/~coee/histome/variants.php?variant=Histone_H3.1 In particular, the PTMs (little letters on top of large letters) are hyperlinked to their individual pages. While this worked in Chrome, Firefox, and Safari, the hyperlinks were absent on IE8 (worked in IE9). When I upgraded to Raphal-2.0 In IE8 the figure disappeared completely. Is it an issue

Same-page anchor links to section ids not working in IE8

╄→гoц情女王★ 提交于 2020-01-02 10:05:29
问题 I have a single-page HTML5 website with navigation that should send the user to that section. Works great in all browsers except IE8, which doesn't do anything. Dummied version of what I have: <a href="#about">About</a> <a href="#work">Work</a> <a href="#services">Services</a> <a href="#process">Process</a> <a href="#contact">Contact</a> <section id="about"> ... </section> <section id="work"> ... </section> <section id="services"> ... </section> <section id="process"> ... </section> <section

IE8 Async file upload

做~自己de王妃 提交于 2020-01-02 06:57:12
问题 I am trying to find example code to upload files asyncronously (via Ajax) in IE8. Also upload progress would be nice, but not mandatory. Id like PHP code to be able to deal with the file server side. I keep coming across examples for other browsers using FormData, but I cannot use that. Could any body please point me in the right direction? 回答1: This is a good tutorial on the subject: http://hungred.com/how-to/tutorial-easiest-asynchronous-upload-file-ajax-upload/ HTML: <form id="my_form"

IE8 Height 100% Bug

烈酒焚心 提交于 2020-01-02 06:45:22
问题 Has anyone heard of a bug that occurs with IE8 when applying height as a percentage to the html and body using CSS? I'm seeing a white background when a tile pattern should be applied. html, body { margin: 0; padding: 0; height: 100%; } body { background-color: #666; background-image: url('../images/body/bg_pattern.gif'); } 回答1: IE8 interprets the height element closer to the standards than IE7 did. The statement `Height: 100% Is pretty much ignored. Percentage heights are based upon the

Jquery ZeroClipboard or Zclip nothing in clipboard IE 8 and 7

社会主义新天地 提交于 2020-01-02 05:38:09
问题 I'm using Jquery plugin ZClip or ZeroClipboard which copies content to the clipboard via a button or link. The data to copy and links/buttons to activate this are loaded using ajax which needs to use plugin, I attach the elements after they have loaded as so: $('#ajaxbutton').live('click', function() { $.ajax({ type: "POST", url: "ajax.php", success: function(msg){ $('a.ajaxcopymulti').zclip({ path:'js/ZeroClipboard.swf', copy:function(){ return $('p#ajaxdescription').text(); } }); }); });