I am loading content into a div from an external html file. It is pretty simple (although I had some trouble getting the content to appear that was solved here: jquery mobile - loading content into a div) but once the content is loaded (it's just text) there is this little spinning loading animation in the center of the screen that won't go away. I don't know if JQuery is trying to load something else or what.
<script>
$(document).ready(function()
{
$('#welcome').click(function(){
console.log('clicked');
$('#mainContent').load('welcome.html');
$('#mainContent').trigger("pagecreate").trigger("refresh");
});
});
</script>