Have you been wondering, why js is not working on ie 7 when everywhere else it does? Well, remove from your js code:
console.log(); </code>
sq0a3q
IE 7 js doesnt work
Written by Stanislav Gurnik
2 Responses
3982

@finnpauls I use a small script int he top that's if(!window.console){var i=function(){},console={log:i,dir:i});
cause I use both console.log and console.dir sometimes.
over 1 year ago
·
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#
Or add
if (!window.console) console = {log: function() {}}
at the top.