Если вставить тот же урл в пример http://ajaxdaddy.com/demo-dynamic-content.html в часть:
function getAjaxFile()
{
ajax.requestFile = 'http://localhost:8000/My_project/upload/panorama'; // Specifying which file to get
ajax.onCompletion = showContent; // Specify function that will be executed after file has been found
ajax.onLoading = showWaitMessage; // Action when AJAX is loading the file
ajax.runAJAX(); // Execute AJAX function
}
с
$('#panorama_add').click(function () {
$("#contentContainer").load("http://localhost:8000/My_project/upload/panorama/");
});Спасибо