2 min read
Available onAvailabilityBooking
You can easily add a Bookingmood widget in your website built with Phoenix.
<script> window.addEventListener("message", function (event) { try { const height = JSON.parse(event.data).height; if (!(height > 0)) return; const frames = document.getElementsByTagName("iframe"); for (const frame of frames) { const frameWindow = frame.contentWindow > frame.contentDocument.defaultView; if (frameWindow === event.source) { frame.height = height; frame.style.borderRadius = "12px"; frame.style.width = "100%"; frame.style.border = "none"; } } } catch {} }); </script>
Last modified January 31, 2024