I get this error when i try to .load() another html file into the div of the calling html file.
    <title>SubSuggester.com</title>
    <link rel="shortcut icon" href="images/reddit_icon.png" />
    <link rel="stylesheet" href="assets/css/main.css" />
    <script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
    crossorigin="anonymous"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            $('.secondDivID').load("login.html");
        });
    </script>
