At Solstice At Wilton Vacation Rental, we invite you to immerse yourself in extraordinary adventures and activities, each one inspired by Wilton Manors Paradise. Sit back and relax – enjoy your stay Solstice.
TAKE A SWIM
IN PARADISE
STAY UPDATED with upcoming events
Stop by and see why our place is a Paradise in the making. You'll find us to be the cleanest, most relaxing and friendliest of all the local vacation rentals.
document.addEventListener('DOMContentLoaded', function () {
// Get the form by the CSS ID you'll set in Elementor (ID = anti-spam-form)
var form = document.querySelector('form#anti-spam-form');
if (!form) return;
// Get the hidden security token field
var tokenField = form.querySelector('input[name="security_token"]');
if (!tokenField) return;
// Set a dynamic timestamp value
tokenField.value = Date.now().toString();
// Block submission if the field is empty (bot missing dynamic JS)
form.addEventListener('submit', function (e) {
if (!tokenField.value || tokenField.value.trim() === '') {
e.preventDefault();
alert('Unable to verify your submission. Please refresh and try again.');
}
});
});