i'm trying to get http://www.zimmi.cz/mapa/mapa.html work in IE 9. It works just fine in Opera, Chrome, Firefox and compatibility mode of IE 9, but not IE 9 itself. The map doesn't load at all, but i can't find reason why.
Developer Tools says "SCRIPT5039: const was already declared" (translated from Czech) on line 24 char 1, which is jquery $().ready(function(). If anyone can help me out, i'd be really grateful.
Try with:
$(document).ready(function(){ ... });
Related
I am using iframe tag and adding Spotify playlist url in src, see the example below:
<iframe class="myspotify-iframe" src="https://open.spotify.com/embed/playlist/3p5lcgvL0wxDeu32u3prL1" title="Spotify playlist" frameborder="0" allowtransparency="true" allow="encrypted-media">
</iframe>
above code is working fine in chrome, firefox & safari. But the playlist is not loading in IE11.
Any suggestion how this issue can be fixed ?
That website may no longer be compatible with IE11.
Don't make your websites compatible with IE11, or else you won't be able to use recent web standards without a lot of hacks. IE11 was released in 2013, 7 years before 2020.
I try to check the Spotify official docs to check the browser support.
I come to know by visiting this link that Spotify web player supported by Chrome, Firefox, Edge, Opera, and Safari browser.
So it looks like the IE browser is not supported and this is the reason that your playlist is not loading in the IE browser.
The issue is not related to an iframe. If you directly try to open the page in the IE browser then you can notice that it will show an error in the console.
I suggest trying to use the new MS Edge browser can help you to avoid the issue.
I was reading the Safari developer docs and it lists these as a new feature supported in Safari 9 (seems like IE and Firefox have support, too) but I can't find any decent documentation on how to use this...
Has anyone tried this yet? Got it working? Can you please point to some working code? Thanks.
I have a pretty complex layout for my calendar script at http://www.clinde.de/cal/index.php and i used http://www.my-debugbar.com/wiki/IETester/HomePage this IE Tester. It works like it should in all IE version exerpt 5.5 and that's really impressive. If i use my IE 11 on Win7/64bit the hover effect is bugged. Works fine in Chrome and Firefox. Any suggestions to improve this to make it work in IE 11?
I'm a programmer for an online store so i visit hourly this website. One of my coworkers said to me that for her the website looks awful so i instantly tried on my pc. It worked great but now after 1 day, i updated my chrome too and it looks awful.
I realized the chrome version 28.0.1500.71 m is messing the website. I don't know what exactly but something with the styles. It's like they don't load or something (part of the style is not loading or something because some elements have styles some not... and it's a real mess).
I checked on multiple PCs, different OS's: windows 7 (64 and 32), windows xp (on 3 different pcs) (when i had the older chrome version all worked wonderfully but now, when we all updated it looks very broken)...
I tried on ie 8, 9, 10, firefox, opera, safari and they all work superb, like they have to but, on chrome version 28.0.1500.71, is not.
What can i do? It's not like it's my fault or something but how can i change so it looks right again?
Please visit this page and tell me how do you see it and please verify it with chrome version 28.0.1500.71 and with another browser to see the difference.
LINK REMOVED 2018 :) not needed anymore
Update:
I'll keep you updated on what i do so you don't have to try again but for now i uninstalled google chrome version 28.0.1500.71 m and installed google chrome version 27.0.1453.116 m to be sure this is the problem. What do you think guys? It fixed the problem. But, i want a fix for version 28.0.1500.71 m.
Update 14:44
Ill update chrome back to 28.0.1500.71 m to make screenshots so everyone can see but first i'll make some screenshots in this version i have now (27.0.1453.116 m)
Screenshots
good) chrome 27.0.1453.116 m i.imgur.com/bWfvwdk.jpg
problem) chrome 28.0.1500.71 i.imgur.com/bx6ttRB.jpg
problem) chrome 28.0.1500.71 incognito i.imgur.com/76NUyOn.jpg
good) Latest opera i.imgur.com/gqWd6OT.jpg
good) latest firefox i.imgur.com/ImTVtSI.jpg
good) ie 10 i.imgur.com/FwvZy5j.jpg
good) IE 9 (browser mode IE9) i.imgur.com/74bTmGR.jpg
good) IE8 (browser mode IE8) i.imgur.com/KKqE997.jpg
good) Safari i.imgur.com/qWI0Wos.jpg
SOLUTION
Big big thanks to #Zenith
He sayd that google chrome changed the webkit so i analysed the css and found
#-webkit-keyframes blink {
from {
opacity: 1;
}
to {
opacity: .5;
};
}
I just removed it. Now it works perfectly. Thank you.
this link works great with chrome and firefox 4 http://cluster005.ovh.net/~bquadint/drmonod/
However, if i view it with IE9, it throws it into IE9 Compat View / Document mode: IE7 Standards
Any ideas why?
Often that can happen when there is a problem with your doctype .. like if it were missing. That's the first place I'd look. It would be difficult to troubleshoot further without code to sift through.