jQuery(document).ready(function($) {
// console.log('De pagina is geladen!');
let searchParams = new URLSearchParams(window.location.search);
if (searchParams.has('contact_id') && searchParams.has('offer_id') && searchParams.has('hash')) {
let contactId = searchParams.get('contact_id');
let offerId = searchParams.get('offer_id');
let hash = searchParams.get('hash');
let url = 'https://penta-power.com/backend/get_penta_power_offer_manual_pdf.php?contact_id=' + contactId + '&offer_id=' + offerId + '&hash=' + hash;
let message = 'Klik hier om de handleiding te downloaden.';
$('#link_to_manual').html(message);
} else {
$('#link_to_manual').html('Je lijkt een verkeerde link gevolgd te hebben.');
}
});