By submitting this form, you agree to receive email and text communication from Winmark (or appropriate brand). You can opt out of those communications at any time.
function generateUniqueId() {
const timestamp = new Date().getTime(); // Get current timestamp in milliseconds
const random = Math.random().toString(36).substring(2, 8); // Add a random string for more uniqueness
return `$-$`; // Combine timestamp and random string
}
const order_id = generateUniqueId()
console.log(order_id)
const order_id_form = document.getElementById('myInput');
order_id_form.value = 'New value';
}