document.addEventListener('DOMContentLoaded', function () {
// Get the boat-link hidden field
var boatLinkField = document.querySelector('#boat-link');
// Check if the field exists and set its value to the current page URL without the fragment
if (boatLinkField) {
boatLinkField.value = window.location.href.split('#')[0]; // Strip out the fragment part
}
});