internet-explorer-9

IE9 png and background property

早过忘川 提交于 2019-12-13 05:00:55
问题 I have an issue here, I'm working on a project which is properly working in firefox and chrome. Now I'm testing in IE. I thought with all the advertising about IE9, it would look great, or at least not break anything. I have several problems though : I use some png images. And even if the images are showing, I have a little red cross above it. And I really don't understand why ... you can see it here : http://www.hostingpics.net/viewer.php?id=173809Sanstitre.png In the same pic, you can see

Why does Internet Explorer 9/10 ignore column widths when using colspan?

一笑奈何 提交于 2019-12-13 04:57:06
问题 I guess the following code shall explain the problem. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Test</title> <style type="text/css"> body { padding-bottom: 24px } table { table-layout: fixed } </style> </head> <body> <table class="question" id="TR09_tab" border="0" cellpadding="0" cellspacing="0" width="100%"> <colgroup> <col width="22"> <col width="110"> <col> </colgroup> <tr> <td><input name="one" id="one"

Mapbox markers from geoJSON not appearing in IE9

天大地大妈咪最大 提交于 2019-12-13 04:52:34
问题 I have a map that is loading markers from a local geoJSON file. This works fine in all browsers I have tested (FF, Chrome, Safari, Opera, IE10, IE11) but not in IE9. I added a marker to the map without geoJSON (the yellow bus marker) which does show up fine in IE9. Here is the relevant code: // set up mapbox var map = new L.mapbox.map('map', '########', { tileLayer: { detectRetina: true, minZoom: 2 }, zoomControl: false }); // marker without geoJSON L.marker([-37.9, -77], { icon: L.mapbox

Custom fonts not displaying within IE9 & IE10

两盒软妹~` 提交于 2019-12-13 04:47:51
问题 I've been running into multiple issues with utilizing custom fonts at the following location: www.shawmut.com/happyholidays I ran into an issue yesterday with Mozilla Firefox and it not displaying a custom font I was linking to our AWS S3 Bucket, which I resolved by hosting the fonts of our actual web server. Now, I'm experiencing an issue with IE9/10 where the fonts are not displaying once again. I found the following discussion here: IE9 Refusing to Load custom font? which somewhat touches

After insalling KB2846071 event.clinetY seems to be negative value

青春壹個敷衍的年華 提交于 2019-12-13 04:30:01
问题 Installation of KB2846071 breaks the event.clientX and event.clientY properties when we are in an onbeforeunload event handler. window.onbeforeunload = function(e) { if (event.clientY < 0 ) { // close the session // warn the user... } }; This fires now everytime when a user clicks a link on the page because event.clientY is always negative. That means our users are losing their sessions by clicking on links or link buttons within the app! any solution for this is appreciated. Regards, Nimi

JQuery dialog (with button) not working in IE9

佐手、 提交于 2019-12-13 03:59:15
问题 I have a jQuery dialog box showing some Ts and Cs. It renders with the submit button disabled The user should tick a checkbox to confirm they have read them in order to enable the submit button. This works fine in IE10, Chrome and Firefox. However, in IE9 the dialog renders with the button enabled (although clicking it does not trigger a submit) and the check box doesn't do anything. The code is: <a href="#" id="open_terms" title="Terms">Terms and conditions</a> <div id="terms" style="padding

Logging in via iFrame doesn't work with IE9?

▼魔方 西西 提交于 2019-12-13 03:56:46
问题 I've got a site http://abc.com/support, which uses an iFrame that has a source pointing to https://123.sample.com My objective was to mask the domain and the iFrame accomplishes this successfully. However, I just found out that users are not able to log into the site using IE 9(source: https://123.sample.com) when they go through the iFrame. Nothing errors out, it's just that the page refreshes and they'll still be at the login screen. But if they were go directly to https://123.sample.com in

jQuery serialize with Ajax does not work in IE9

断了今生、忘了曾经 提交于 2019-12-13 02:48:33
问题 function myTimestamp(){ tstmp = new Date(); return tstmp.getTime(); } function showValues() { var str = ($("#this").serialize()); $("#results").text(str); } $(":checkbox, :radio").click(showValues); $("select").change(showValues); showValues(); function sendValues() { var str = $("#this").serialize(); var response = $('input[name=product[]]:checked').val(); $.ajax({ url: "/post.php?avoidcache=' + myTimestamp();", data: {str} cache: false }); } This script works wonderful in Google Chrome;

for each loop is not working in major browsers except firefox

强颜欢笑 提交于 2019-12-13 02:21:34
问题 My Code: <script type="text/javascript"> for each ( var movie in ['Endhiran The Robot','Shivaji The Boss','Anbulla Rajinikanth'] ) document.writeln(movies + "<br/>"); </script> In Firefox, I am getting the output as Endhiran The Robot Shivaji The Boss Anbulla Rajinikanth But in IE9 and Chrome Version 23.0.1271.95 m , for each is not working and nothing is written on the document 回答1: There is no for each in JavaScript, that was a non-standard extension. There is the new ES5 forEach function,

Google Map API v3 - map working in FF, Chrome but not IE 9

和自甴很熟 提交于 2019-12-13 02:09:47
问题 I seem to be having the opposite issue of some of the other issues I've seen posted. I've been playing with the GM API v3 and it's working just fine in FF (v16) and Chrome (v23), but it will not display in IE(9). I'm still trying to learn Javascript, so I'm assuming that is where the issue is, but I've pretty much used the example scripts provided by Google. I also know that FF is more forgiving browser, but I've validated my HTML code and it seems pretty clean. After messing with this the