internet-explorer-8

IE8 not displaying Img element correctly when a large height attribute is defined

故事扮演 提交于 2019-12-11 10:17:21
问题 I have an image element like the following <img src="someImage.jpg" height="26136" width="918" /> In IE8, this image does not render correctly. The height of the rendered image is squished down into what looks like 1 pixel. However, if I instead set the height by CSS styles, the image is rendered correctly. 回答1: As in the comment, I made this test image: http://i.stack.imgur.com/M2Olq.jpg - I'm not going to inline it here :) I'm testing with bona fide Internet Explorer 8 / Windows 7. This

Having problems in IE8 when attempting to get data from target event

余生颓废 提交于 2019-12-11 10:01:51
问题 I have code such as this.. // Get some data var id = event.target.id; var flag_status = event.target.dataset.change; var winner_id = event.target.dataset.winner; var item_id = event.target.dataset.item; "Normal" browsers like Firefox and Chrome get the values with no problems and everything works great; however nothing is happening with IE8 so I'm assuming it can't get the data. The event parameter is passed to this function via this code: $('.shipping_status').click(function(event) { event

jqplot graph background seems to be black in ie8

不想你离开。 提交于 2019-12-11 09:49:16
问题 I'm using jqplot in my website using the following code $(document).ready(function(){ var xticks = [ '0', '1', '2', '3', '4','5', '6', '7', '8', '9', '10','11', '13','14','15','16','17','18','19','20','21','22','23']; var data1 = [2,4,6,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,6,3,1,2,2,0,0,0,0,0,0,2,5,6,6,7,6,6,6,5,7,7,6,1,0,0,0,0]; var plot2 = jQuery.jqplot ('chart1', [data1], { animate : true, // Will animate plot on calls to plot1.replot({resetAxes:true}) animateReplot : true, seriesDefaults : {

open pdf in internet-explorer-8

微笑、不失礼 提交于 2019-12-11 09:45:24
问题 I have a file Life.pdf in the directory \10.230.193.131\dev\Reports From my window explorer I am able to browse the folder and I can open the file\10.230.193.131\dev\Reports\Life.pdf , manually. Now in my html page I am having a link to open the file "open file" When I point mouse on the link in the left bottom corner of the browser it is also written like file://10.230.193.131/dev/Reports/Life.pdf But on clicking on the link , the pdf file is not opening. No warning is also displayed. But

data table header height increased after showing /hiding the columns in IE8 browser

天涯浪子 提交于 2019-12-11 09:24:46
问题 We are dynamically hiding/showing the data table column (using datatable plugin as well Fixed Column.js plugin) After hiding the columns,it will increase the table header height in IE8 browser only. This is code we are using to hide. "index" is column index. //$datatable is datatable object if(some condition) { $datatable.fnSetColumnVis(index, false); } else { $datatable.fnSetColumnVis(index, true); } This issue seems to be FixedColumns.js(2.0.3 version). we are using FixedColumns in our data

Cookie problems with IE and Chrome (working with java)

北慕城南 提交于 2019-12-11 08:37:35
问题 I'm trying to send an image to the client from a servlet, and add a cookie containing the id of the image to the repsonse. ( i don't want to display the same image more than N times). Looks like Internet Explorer doesn't care about the cookies and i always get a null reference when i call request.getCookies();. With Opera everything works great. Chrome sees the cookies but i get the following exception when i write the image to the outputStream : ClientAbortException: java.net.SocketException

IE9+8 HTML5 Video - video loads but “invisible”

这一生的挚爱 提交于 2019-12-11 08:35:16
问题 I have an html5 video tag on a page, with a flash fallback for IE8. The video is hidden with display:none and attached to parent 'a' until a play button (image) is pressed. At that point the video element is moved to parent 'b' (a box within an overlay) and i call jQuery's show(). On Chrome, FF and Safari, the video shows. However, on IE9 and IE8, the video doesn't show, but is there. Meaning, I can right click where it should be and will get a video related context menu. If I click play at

jQuery xml parse with check for IE8 not working

本小妞迷上赌 提交于 2019-12-11 08:26:51
问题 I have looked through and tried all the SO answers on jQuery, XML and IE8, but nothing is giving me a result. Any other suggestions on how to get this to working with jQuery or Javascript? $.ajax({ type: "GET", url: "http://query.yahooapis.com/v1/public/yql?q=select%20title%2C%20link%20from%20rss%20where%20url%3D%22http%3A%2F%2Fwww.fs.usda.gov%2Fwps%2FPA_WIDConsumption%2Frssgetfile%3FxFSENavChannel00%3D1109%26xFSENavChannel02%3D091000000000000%26pathinfo%3D%2Fwps%2Fportal%2Ffsinternet%2F!ut

Internet Explorer 8 compatibility issues [closed]

[亡魂溺海] 提交于 2019-12-11 08:23:38
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 5 years ago . I am a relative noob at graceful degredation, and wanted some tips on a site that just went live. I know that at this point the layout is completely broken in IE 8 or lower, and wanted to see how much I could do to make things work without a massive overhaul. www.unccti.org On IE 8, for example, it

Bootstrap 3 Horizontal Form / IE8 Support

怎甘沉沦 提交于 2019-12-11 07:45:18
问题 So I'm working on a website using Bootstrap 3. This website needs to render properly in IE8 (yes I know). I'm working on a horizontal form right now. Used the code provided by Bootstrap documentation: <form class="form-horizontal" role="form"> <div class="form-group"> <label for="inputEmail1" class="col-lg-2 control-label">Email</label> <div class="col-lg-10"> <input type="email" class="form-control" id="inputEmail1" placeholder="Email"> </div> </div> <div class="form-group"> <label for=