Input
Last updated
if(tourAid) {
const tourDateElement = document.getElementById('tour-date') as HTMLInputElement;
if (tourDateElement) {
// Prevent user editing by blurring on focus
tourDateElement.onfocus = () => tourDateElement.blur();
// Also make it non-clickable via CSS
tourDateElement.style.pointerEvents = 'none';
// Optional: add styling to indicate it's non-editable
tourDateElement.style.backgroundColor = '#f5f5f5';
// tourDateElement.readOnly = true;
}