function downloadFile() {
fetch('/umbraco/surface/franchise/DownloadFiles/38664', {
method: 'GET'
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
return response.text();
}).then(data => {
var link = document.createElement('a');
link.href = data;
link.download = "Au Vide Grenier";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
})
.catch(error => {
console.error('Error:', error);
});
}
function contactFranchiser(){
window.franchise.commit("wizard-selection", JSON.stringify({ ids: '38664', isConfirmation: false }));
document.querySelector('[data-wizard]').classList.remove('d-none')
}
We hebben uw goedkeuring nodig
Wij houden van cookies. Deze cookies zijn nodig om uw ervaring nog persoonlijker te maken. Ze slaan geen persoonsgegevens op. Vindt u dit Ok?