In Internet Explorer (I tried 9 and 8) my application doesn't work in the normal mode. But when I get to debug mode (press F12), it works with some minor problems (which are irrelevant now).
This makes it impossible for me to debug my application, because in debug mode, it just starts working.
This is the application I developed.
What could be the solution?
Do you use console.log
in your script?
In IE browsers console
object exists in scope only in debug mode.
Change your code to:
if (console) console.log('...')
EDIT: I've looked at your application and you are using console log.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With