Patrick
Patrick

Reputation: 2577

Javascript: Uncaught ReferenceError: XMLhttpRequest is not defined

I moved a file from one server (where it worked) to another and received this error from the console. Is there some library or something that could be missing from the server? It's running IIS 7 on windows server 2008 R2 Standard.

<script> 
        var xmlhttp = new XMLhttpRequest();
    </script>   

Upvotes: 0

Views: 2637

Answers (1)

Prinzhorn
Prinzhorn

Reputation: 22508

It's XMLHttpRequest, note the capital H

Upvotes: 1

Related Questions