Hi,

Our site (www.iloho.com) works fine on FF, Chrome and Safari but on IE it seems to freeze on the home page after signing in.

We've been trying to resolve this for a week and sadly there's no meaningful progress.

Is anyone able to point out which areas we should look into?

Cheers
Jimmy

Recommended Answers

All 4 Replies

have you seen the console log of IE's web development tool?

since IE crashed before the loading was done, the console log was not accessible. We just had to force quit.

Have you tried "debugger;" to put breakpoints in your code?

MyLogin = function(){
    this.loginUser = function(){
        //getData through AJAX

        // insert the debugger to create a breakpoint; script stops here
        debugger;
        this.prepareUserData(userData)
    }
    this.prepareUserData = function(userData){
        //... implementation for preparing user data
    }

}
Member Avatar for diafol

ANy chance of showing your code? Couldn't test it without signing up.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.