Hej Forum.
Jeg har fra en booking-udbyder fået nedenstående script, som skulle "være lige til at sætte ind", hvorefter det skulle fungere.
Jeg kan ikke få det til at fungere - er der nogen som kan hjælpe mig på vej til en løsning ?
---------
<script type="text/javascript">
function loadIframe() {
var iframe = document.createElement("iframe"); var source = 'http://app.primobooking.com/28/777aa3d2931298bcde8562fbe5ae6fad/customer/booking/';
if (document.location.search) {
source += document.location.search;
}
iframe.setAttribute('src', encodeURI(source)); iframe.setAttribute('id', 'primoBooking'); iframe.setAttribute('width', '100%'); iframe.setAttribute('height', '100%'); iframe.setAttribute('marginwidth', '0'); iframe.setAttribute('marginheight', '0'); iframe.setAttribute('scrolling', 'no'); iframe.setAttribute('frameborder', '0');
return iframe;
}
window.addEventListener('message', function () { var url = document.location.origin; window.history.replaceState(null, null, url); });
window.onload = function () {
document.body.appendChild(loadIframe());
};
</script>
---------
M.v.h.