URL Parameter:
?id=134&L=0&tx_indexedsearch_pi2%5Baction%5D=search&tx_indexedsearch_pi2%5Bcontroller%5D=Search&tx_indexedsearch_pi2%5Bsearch%5D%5Bsword%5D=Begriff
JavaScript V1:
$('.search-result').remove();
var cmsUrl = 'https://cms.laeckerli-huus.ch/index.php?id=134&L=0&tx_indexedsearch_pi2%5Baction%5D=search&tx_indexedsearch_pi2%5Bcontroller%5D=Search&tx_indexedsearch_pi2%5Bsearch%5D%5Bsword%5D=';
var cmsSearchUrl = cmsUrl + sucheingabe;
$.ajax({
url: cmsSearchUrl,
async: true,
cache: false,
type: "GET",
success: function(s){
$('.search-result').remove();
var content = $(s).find("#content-search").html();
$("#container_suchresultate").after(content);
}
});