I'm trying to use jQuery.ajax() to retrieve an html code snippet from table_snippet.html and then replace the element in my html code. My error handler in jQuery.ajax() is being executed instead of the desired success handler.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>Table</title>
        <link href="address-data-file.css" type="text/css" rel="stylesheet">
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
        <script src="ajax_goodness.js" type="text/javascript"></script> 
    </head>
    <body onload="func()">
        <div id="div_id">
            <p>Use AJAX to retrieve the file table-snippet.html and then replace the div with the contents of that file.</p>
        </div>
    </body>
</html>
function func(){
    jQuery.ajax({
        type: "GET",
        url: "table_snippet.html",
        dataType: "html",
        success: function(data){
            $("#div_id").html(data);
        },
        error: function(){
            alert("fail");
        }
    });
}