I'm trying to load an external php file via jquery into a specific div on my index page, but nothing will appear whatsoever.
This is my jquery script in the head
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
$(document).ready(function (){
$("#content").load("index_content.php");
});
</script>
And of course the div is simply called on the page as
<div id="content"></div>
My external php file is nothing special, it's just a table with lots of HTML and a few
<?php someFunctionCall(); ?>
No matter what I do, the content from the index_content.php
will not load into the page when I load the site
Thanks