This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
host_danube/danube/page/js/loadtexts.js
2013-04-28 16:10:43 +02:00

22 lines
681 B
JavaScript

function loadcontent()
{
//alert("test");
$("#site-content").load("http://mojotrollz.eu/web/danube/danube/page/googlemaps/googlemaps.tpl");
}
/*
function loadAjaxContent(url) {
var dataTmp;
$.get(url, function (data) {
dataTmp = data;
bodyelem = $("html,body");
bodyelem.animate({scrollTop: 0});
}).complete(function() {
$('#site-content-wrapper').slideUp({duration: 'slow',
complete: function(){
$('#site-content').html(dataTmp);
$('#site-content-wrapper').slideDown('slow');
site_content_is_visible = true;
}});
});
}
*/